summaryrefslogtreecommitdiff
path: root/taskflow/tests/unit/test_exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskflow/tests/unit/test_exceptions.py')
-rw-r--r--taskflow/tests/unit/test_exceptions.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/taskflow/tests/unit/test_exceptions.py b/taskflow/tests/unit/test_exceptions.py
index c542ae8..4c20f7c 100644
--- a/taskflow/tests/unit/test_exceptions.py
+++ b/taskflow/tests/unit/test_exceptions.py
@@ -16,9 +16,6 @@
import string
-import six
-import testtools
-
from taskflow import exceptions as exc
from taskflow import test
@@ -109,7 +106,6 @@ class TestExceptions(test.TestCase):
ex = exc.TaskFlowException("Broken")
self.assertRaises(ValueError, ex.pformat, indent=-100)
- @testtools.skipIf(not six.PY3, 'py3.x is not available')
def test_raise_with_cause(self):
capture = None
try: