Skip to content

Commit 010bc5c

Browse files
committed
forgot to import trio
1 parent 6cdbd9c commit 010bc5c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_kernelapp.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from .conftest import MockKernel
1313
from .utils import TemporaryWorkingDirectory
1414

15+
1516
@pytest.mark.skipif(os.name == "nt", reason="requires ipc")
1617
def test_init_ipc_socket():
1718
app = IPKernelApp(transport="ipc")
@@ -113,6 +114,7 @@ def test_merge_connection_file():
113114

114115
@pytest.mark.parametrize("anyio_backend", ["trio"])
115116
async def test_trio_loop(anyio_backend):
117+
import trio
116118
app = IPKernelApp(trio_loop=True)
117119

118120
async def trigger_stop():

0 commit comments

Comments
 (0)