X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/62fd250aad64dd255b98c7c6972f39d190d18b3a..bf3ebdee73154eef706afd22e5700e0860587b9a:/tasklib/tests.py?ds=sidebyside diff --git a/tasklib/tests.py b/tasklib/tests.py index 15d36cc..b40203f 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -40,7 +40,7 @@ class TasklibTest(unittest.TestCase): def setUp(self): self.tmp = tempfile.mkdtemp(dir='.') - self.tw = TaskWarrior(data_location=self.tmp) + self.tw = TaskWarrior(data_location=self.tmp, taskrc_location='/') def tearDown(self): shutil.rmtree(self.tmp) @@ -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()