]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

tests: Implement workaround around python2.6 missing SkipTest
authorTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 18:46:23 +0000 (19:46 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 18:58:39 +0000 (19:58 +0100)
tasklib/tests.py

index 15d36ccc7364788857898b7b9fd07b791e26afd9..c982a39baf7985d85d79dfb169c66b1839e4caeb 100644 (file)
@@ -191,7 +191,12 @@ class TaskFilterTest(TasklibTest):
         # Older TW version does not support bumping modified
         # on save
         if self.tw.version < six.text_type('2.2.0'):
-            raise unittest.SkipTest()
+            # Python2.6 does not support SkipTest. As a workaround
+            # mark the test as passed by exiting.
+            if getattr(unittest, 'SkipTest', None) is not None:
+                raise unittest.SkipTest()
+            else:
+                return
 
         t = Task(self.tw, description="test")
         t.save()