We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5c598 commit e1477ecCopy full SHA for e1477ec
tests/nexus/test_worker.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
3
import asyncio
4
+import sys
5
import uuid
6
from datetime import timedelta
7
from typing import Any
@@ -52,6 +53,9 @@ async def test_max_concurrent_nexus_tasks(
52
53
if env.supports_time_skipping:
54
pytest.skip("Nexus tests don't work with Javas test server")
55
56
+ if sys.version_info < (3, 11):
57
+ pytest.skip("Test requires Python 3.11+")
58
+
59
barrier = asyncio.Barrier(num_nexus_operations) # type: ignore
60
61
@nexusrpc.handler.service_handler
0 commit comments