From 53210ed7ad53f494f9b6a9e76110d22719260077 Mon Sep 17 00:00:00 2001 From: Virgil Calvez Date: Thu, 2 Apr 2026 14:26:49 +0200 Subject: [PATCH] Fix runner crash on github --- graalpython/lib-python/3/test/test_asyncio/test_runners.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graalpython/lib-python/3/test/test_asyncio/test_runners.py b/graalpython/lib-python/3/test/test_asyncio/test_runners.py index 37be6e4345..922c4ca0b1 100644 --- a/graalpython/lib-python/3/test/test_asyncio/test_runners.py +++ b/graalpython/lib-python/3/test/test_asyncio/test_runners.py @@ -214,6 +214,7 @@ async def main(): self.assertTrue(policy.set_event_loop.called) def test_asyncio_run_without_uncancel(self): + if os.environ.get("GITHUB_CI"): self.skipTest("Crashes runner on GitHub CI") # See https://github.com/python/cpython/issues/95097 class Task: def __init__(self, loop, coro, **kwargs):