Revert "Change to relative conftest.py imports"

This reverts commit 2b53c74b1c.
bug_in_debug
Tyler Goodlet 2020-10-13 14:42:02 -04:00
parent e3c26943ba
commit 666966097a
5 changed files with 5 additions and 5 deletions

View File

@ -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):

View File

@ -11,7 +11,7 @@ import pytest
import tractor
import trio
from .conftest import tractor_test
from conftest import tractor_test
@tractor_test

View File

@ -7,7 +7,7 @@ import pytest
import trio
import tractor
from .conftest import tractor_test
from conftest import tractor_test
@pytest.mark.trio

View File

@ -6,7 +6,7 @@ import time
import pytest
import tractor
from .conftest import (
from conftest import (
tractor_test,
sig_prog,
_INT_SIGNAL,

View File

@ -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}