]> 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: Skip invalid tests for older version of TaskWarrior
authorTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 17:54:57 +0000 (18:54 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Fri, 20 Feb 2015 17:54:57 +0000 (18:54 +0100)
tasklib/tests.py

index 7c8740098ccd5654abd8a0baef4d08cf71d09266..15d36ccc7364788857898b7b9fd07b791e26afd9 100644 (file)
@@ -188,6 +188,11 @@ class TaskFilterTest(TasklibTest):
         self.assertEqual(list(tasks), [t])
 
     def test_filter_dummy_by_modified(self):
+        # Older TW version does not support bumping modified
+        # on save
+        if self.tw.version < six.text_type('2.2.0'):
+            raise unittest.SkipTest()
+
         t = Task(self.tw, description="test")
         t.save()