summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_coroutines.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-05-16 14:02:37 (GMT)
committerGitHub <noreply@github.com>2022-05-16 14:02:37 (GMT)
commit9b50585e0225a80f9e383edacc7d73f1b5c8008b (patch)
tree5d3e7e1517143062aa8b7883202d5fe509244e7c /Lib/test/test_coroutines.py
parentfa2b8b75eb2b8a0193d587e02b488a73579118fc (diff)
downloadcpython-9b50585e0225a80f9e383edacc7d73f1b5c8008b.zip
cpython-9b50585e0225a80f9e383edacc7d73f1b5c8008b.tar.gz
cpython-9b50585e0225a80f9e383edacc7d73f1b5c8008b.tar.bz2
gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846)
Diffstat (limited to 'Lib/test/test_coroutines.py')
-rw-r--r--Lib/test/test_coroutines.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py
index 77944e6..dba5cef 100644
--- a/Lib/test/test_coroutines.py
+++ b/Lib/test/test_coroutines.py
@@ -2209,7 +2209,8 @@ class CoroutineTest(unittest.TestCase):
@unittest.skipIf(
- support.is_emscripten, "asyncio does not work under Emscripten yet."
+ support.is_emscripten or support.is_wasi,
+ "asyncio does not work under Emscripten/WASI yet."
)
class CoroAsyncIOCompatTest(unittest.TestCase):