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 2ad0350 commit 557df24Copy full SHA for 557df24
tests/fast/api/test_connection_interrupt.py
@@ -7,7 +7,7 @@
7
8
9
class TestConnectionInterrupt(object):
10
- @pytest.mark.xfail(sys.platform == "win32" and sys.version_info[:2] == (3, 14) and __import__('sysconfig').get_config_var("Py_GIL_DISABLED") == 1, reason="known issue on Windows 3.14t (free-threaded)", strict=False)
+ @pytest.mark.skipif(sys.platform == "win32" and sys.version_info[:2] == (3, 14) and __import__('sysconfig').get_config_var("Py_GIL_DISABLED") == 1, reason="known issue on Windows 3.14t (free-threaded)")
11
@pytest.mark.xfail(
12
condition=platform.system() == "Emscripten",
13
reason="threads not allowed on Emscripten",
0 commit comments