File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
import json
2
+ implort platform
2
3
3
4
import httpx
4
5
import pytest
16
17
17
18
18
19
@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 ):
20
22
config = {
21
23
"jupyverse" : {
22
24
"type" : "jupyverse" ,
Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ async def test_kernel_launcher():
39
39
}
40
40
}
41
41
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 :
43
45
app = root_module .app
44
46
transport = httpx .ASGITransport (app = app )
45
47
async with httpx .AsyncClient (transport = transport , base_url = "http://testserver" ) as client :
You can’t perform that action at this time.
0 commit comments