We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d04e55 + 7a5053d commit 11e69eaCopy full SHA for 11e69ea
Lib/test/test_unicode_file_functions.py
@@ -6,6 +6,7 @@
6
import warnings
7
from unicodedata import normalize
8
from test.support import os_helper
9
+from test import support
10
11
12
filenames = [
@@ -129,6 +130,10 @@ def test_open(self):
129
130
# TODO: RUSTPYTHON
131
@unittest.expectedFailure
132
@unittest.skipIf(sys.platform == 'darwin', 'irrelevant test on Mac OS X')
133
+ @unittest.skipIf(
134
+ support.is_emscripten or support.is_wasi,
135
+ "test fails on Emscripten/WASI when host platform is macOS."
136
+ )
137
def test_normalize(self):
138
files = set(self.files)
139
others = set()
0 commit comments