From: Tomas Babej Date: Fri, 20 Feb 2015 18:46:23 +0000 (+0100) Subject: tests: Implement workaround around python2.6 missing SkipTest X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/a3748d4e58e42b0cf796cddeb904365b37340e51?hp=62fd250aad64dd255b98c7c6972f39d190d18b3a tests: Implement workaround around python2.6 missing SkipTest --- diff --git a/tasklib/tests.py b/tasklib/tests.py index 15d36cc..c982a39 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -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()