From 25816d3a63c0c7f8551b767e1202247a5d3e32df Mon Sep 17 00:00:00 2001 From: A5rocks Date: Mon, 27 Jul 2026 00:40:33 +0900 Subject: [PATCH] Remove skipif that is out of date --- src/trio/_core/_tests/test_run.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/trio/_core/_tests/test_run.py b/src/trio/_core/_tests/test_run.py index b8edc85fa1..e49e2e6ed2 100644 --- a/src/trio/_core/_tests/test_run.py +++ b/src/trio/_core/_tests/test_run.py @@ -1056,13 +1056,7 @@ async def main() -> None: gc_collect_harder() -# This segfaults, so we need to skipif. Remember to remove the skipif once -# the upstream issue is resolved. @restore_unraisablehook() -@pytest.mark.skipif( - sys.version_info[:2] == (3, 14), - reason="https://github.com/python/cpython/issues/133932", -) def test_error_in_run_loop() -> None: # Blow stuff up real good to check we at least get a TrioInternalError async def main() -> None: