Skip to content

Commit f491125

Browse files
authored
pythongh-127146: Skip test_os.test_mode for Emscripten (python#135764)
Temporarily skip test_os.test_mode on Emscripten; this fails consistently on the buildbot, but not on other test configurations. Reported as python#135783 for follow up.
1 parent 4ddf505 commit f491125

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Lib/test/test_os.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1918,6 +1918,10 @@ def test_makedir(self):
19181918
support.is_wasi,
19191919
"WASI's umask is a stub."
19201920
)
1921+
@unittest.skipIf(
1922+
support.is_emscripten,
1923+
"TODO: Fails in buildbot; see #135783"
1924+
)
19211925
def test_mode(self):
19221926
with os_helper.temp_umask(0o002):
19231927
base = os_helper.TESTFN

0 commit comments

Comments
 (0)