Skip to content

Commit

Permalink
test nested decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
bitranox committed May 3, 2019
1 parent d57adff commit 2ef378d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions wrapt_timeout_decorator/tests/test_wrapt_timeout_decorator.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
"""Timeout decorator tests."""

from dill import PicklingError
try:
from .lib_test_helper import *
except ImportError: # pragma: no cover
from lib_test_helper import *
import pytest
from threading import Thread
import time
import sys

from wrapt_timeout_decorator import *
from wrapt_timeout_decorator.wrapt_timeout_decorator.wrap_helper import *
from wrapt_timeout_decorator.wrapt_timeout_decorator.wrap_function_multiprocess import *
import sys

from .lib_test_helper import *

if sys.version_info < (3, 3): # there is no TimeoutError < Python 3.3
TimeoutError = AssertionError
Expand Down

0 comments on commit 2ef378d

Please sign in to comment.