diff --git a/tests/test_cancellation.py b/tests/test_cancellation.py index aace021d..45452b59 100644 --- a/tests/test_cancellation.py +++ b/tests/test_cancellation.py @@ -11,7 +11,7 @@ import pytest import trio import tractor -from .conftest import tractor_test, no_windows +from conftest import tractor_test, no_windows async def assert_err(delay=0): diff --git a/tests/test_discovery.py b/tests/test_discovery.py index 7f071e24..52a1dc83 100644 --- a/tests/test_discovery.py +++ b/tests/test_discovery.py @@ -11,7 +11,7 @@ import pytest import tractor import trio -from .conftest import tractor_test +from conftest import tractor_test @tractor_test diff --git a/tests/test_local.py b/tests/test_local.py index c6a35699..0a594d0e 100644 --- a/tests/test_local.py +++ b/tests/test_local.py @@ -7,7 +7,7 @@ import pytest import trio import tractor -from .conftest import tractor_test +from conftest import tractor_test @pytest.mark.trio diff --git a/tests/test_multi_program.py b/tests/test_multi_program.py index 2d08f2f5..12ca3ef2 100644 --- a/tests/test_multi_program.py +++ b/tests/test_multi_program.py @@ -6,7 +6,7 @@ import time import pytest import tractor -from .conftest import ( +from conftest import ( tractor_test, sig_prog, _INT_SIGNAL, diff --git a/tests/test_spawning.py b/tests/test_spawning.py index 0800836c..220af3e1 100644 --- a/tests/test_spawning.py +++ b/tests/test_spawning.py @@ -5,7 +5,7 @@ import pytest import trio import tractor -from .conftest import tractor_test +from conftest import tractor_test statespace = {'doggy': 10, 'kitty': 4}