Skip to content

Commit febbbd9

Browse files
committed
-
1 parent fc30398 commit febbbd9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

plugins/environments/tests/test_environments.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import json
2+
implort platform
23

34
import httpx
45
import pytest
@@ -16,7 +17,8 @@
1617

1718

1819
@pytest.mark.anyio
19-
async def test_kernel_environment(tmp_path):
20+
@pytest.mark.skipif(platform.system == "Windows", reason="Doesn't support Windows")
21+
async def test_kernel_environment_micromamba(tmp_path):
2022
config = {
2123
"jupyverse": {
2224
"type": "jupyverse",

plugins/kernels/tests/test_kernel_launcher.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ async def test_kernel_launcher():
3939
}
4040
}
4141

42-
async with get_root_module(config) as root_module:
42+
root_module = get_root_module(config)
43+
root_module._global_start_timeout = 10
44+
async with root_module as root_module:
4345
app = root_module.app
4446
transport = httpx.ASGITransport(app=app)
4547
async with httpx.AsyncClient(transport=transport, base_url="http://testserver") as client:

0 commit comments

Comments
 (0)