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 78f6efb commit 5651d93Copy full SHA for 5651d93
src/trio/_core/_tests/test_run.py
@@ -1060,9 +1060,10 @@ async def main() -> None:
1060
1061
# This segfaults, so we need to skipif. Remember to remove the skipif once
1062
# the upstream issue is resolved.
1063
+# TODO: point out this still segfaults
1064
@restore_unraisablehook()
1065
@pytest.mark.skipif(
- sys.version_info[:3] == (3, 14, 0),
1066
+ sys.version_info[:2] == (3, 14),
1067
reason="https://github.com/python/cpython/issues/133932",
1068
)
1069
def test_error_in_run_loop() -> None:
0 commit comments