Skip to content

Commit 36d08e6

Browse files
committed
Skip test on wasm
Signed-off-by: Filipe Laíns <[email protected]>
1 parent db532aa commit 36d08e6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_build_details.py

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import string
66
import unittest
77

8+
from test.support import is_emscripten, is_wasi
9+
810

911
class FormatTestsBase:
1012
@property
@@ -89,6 +91,7 @@ def test_implementation(self):
8991

9092

9193
@unittest.skipIf(os.name != 'posix', 'Feature only implemented on POSIX right now')
94+
@unittest.skipIf(is_wasi or is_emscripten, 'Feature not available on WebAssembly builds')
9295
class CPythonBuildDetailsTests(unittest.TestCase, FormatTestsBase):
9396
"""Test CPython's install details file implementation."""
9497

0 commit comments

Comments
 (0)