We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db532aa commit 36d08e6Copy full SHA for 36d08e6
Lib/test/test_build_details.py
@@ -5,6 +5,8 @@
5
import string
6
import unittest
7
8
+from test.support import is_emscripten, is_wasi
9
+
10
11
class FormatTestsBase:
12
@property
@@ -89,6 +91,7 @@ def test_implementation(self):
89
91
90
92
93
@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')
95
class CPythonBuildDetailsTests(unittest.TestCase, FormatTestsBase):
96
"""Test CPython's install details file implementation."""
97
0 commit comments