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 07b8f4f commit ba5734fCopy full SHA for ba5734f
test/asynchronous/test_async_contextvars_reset.py
@@ -27,8 +27,8 @@
27
28
class TestAsyncContextVarsReset(AsyncIntegrationTest):
29
async def test_context_vars_are_reset_in_executor(self):
30
- if sys.version_info < (3, 11):
31
- self.skipTest("Test requires asyncio.Task.get_context (added in Python 3.11)")
+ if sys.version_info < (3, 12):
+ self.skipTest("Test requires asyncio.Task.get_context (added in Python 3.12)")
32
33
await self.client.db.test.insert_one({"x": 1})
34
for server in self.client._topology._servers.values():
0 commit comments