Skip to content

Commit

Permalink
Change to relative conftest.py imports
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Oct 5, 2020
1 parent 3710259 commit 2b53c74
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/test_cancellation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import trio
import tractor

from conftest import tractor_test, no_windows
from .conftest import tractor_test, no_windows


async def assert_err(delay=0):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import tractor
import trio

from conftest import tractor_test
from .conftest import tractor_test


@tractor_test
Expand Down
2 changes: 1 addition & 1 deletion tests/test_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import trio
import tractor

from conftest import tractor_test
from .conftest import tractor_test


@pytest.mark.trio
Expand Down
2 changes: 1 addition & 1 deletion tests/test_multi_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import pytest
import tractor
from conftest import (
from .conftest import (
tractor_test,
sig_prog,
_INT_SIGNAL,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_spawning.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import trio
import tractor

from conftest import tractor_test
from .conftest import tractor_test

statespace = {'doggy': 10, 'kitty': 4}

Expand Down

0 comments on commit 2b53c74

Please sign in to comment.