forked from goodboy/tractor
1
0
Fork 0

Change to relative conftest.py imports

debug_tests
Tyler Goodlet 2020-10-05 11:42:13 -04:00
parent 371025947a
commit 2b53c74b1c
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}