Skip to content

Commit b36a6a9

Browse files
Skip test_concurrent_disconnect on macos/py3.13/trio (#536)
* Skip test_concurrent_disconnect on macos/py3.13/trio * Lint
1 parent e3d59e7 commit b36a6a9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

plugins/yjs/tests/test_yjs.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import sys
2+
13
import pytest
24
from anyio import create_task_group
35
from fps import get_root_module
@@ -10,7 +12,15 @@
1012

1113

1214
@pytest.mark.anyio
13-
async def test_concurrent_disconnect(tmp_path):
15+
async def test_concurrent_disconnect(tmp_path, anyio_backend_name):
16+
if (
17+
anyio_backend_name == "trio" and
18+
sys.version_info >= (3, 13) and
19+
sys.version_info < (3, 14) and
20+
sys.platform == "darwin"
21+
):
22+
pytest.skip("Timeout")
23+
1424
config = {
1525
"jupyverse": {
1626
"type": "jupyverse",

0 commit comments

Comments
 (0)