Skip to content

Commit b927e1d

Browse files
committed
skip async tests
1 parent 8ba83b0 commit b927e1d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/lib-python/3/test/test_builtin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from operator import neg
2828
from test.support import (
2929
EnvironmentVarGuard, TESTFN, check_warnings, swap_attr, unlink,
30+
impl_detail,
3031
maybe_get_event_loop_policy)
3132
from test.support.script_helper import assert_python_ok
3233
from unittest.mock import MagicMock, patch
@@ -370,6 +371,7 @@ def f(): """doc"""
370371
rv = ns['f']()
371372
self.assertEqual(rv, tuple(expected))
372373

374+
@impl_detail("async support", graalvm=False)
373375
def test_compile_top_level_await(self):
374376
"""Test whether code some top level await can be compiled.
375377
@@ -421,6 +423,7 @@ async def arange(n):
421423
finally:
422424
asyncio.set_event_loop_policy(policy)
423425

426+
@impl_detail("async support", graalvm=False)
424427
def test_compile_async_generator(self):
425428
"""
426429
With the PyCF_ALLOW_TOP_LEVEL_AWAIT flag added in 3.8, we want to

0 commit comments

Comments
 (0)