We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57adff commit 2ef378dCopy full SHA for 2ef378d
wrapt_timeout_decorator/tests/test_wrapt_timeout_decorator.py
@@ -1,18 +1,15 @@
1
"""Timeout decorator tests."""
2
3
from dill import PicklingError
4
-try:
5
- from .lib_test_helper import *
6
-except ImportError: # pragma: no cover
7
- from lib_test_helper import *
8
import pytest
9
from threading import Thread
10
import time
+import sys
+
11
from wrapt_timeout_decorator import *
12
from wrapt_timeout_decorator.wrapt_timeout_decorator.wrap_helper import *
13
from wrapt_timeout_decorator.wrapt_timeout_decorator.wrap_function_multiprocess import *
14
-import sys
15
-
+from .lib_test_helper import *
16
17
if sys.version_info < (3, 3): # there is no TimeoutError < Python 3.3
18
TimeoutError = AssertionError
0 commit comments