Skip to content

Commit e2bd638

Browse files
hoodmanemiss-islington
authored andcommitted
pythongh-127146: Skip test_os.test_mode for Emscripten (pythonGH-135764)
Temporarily skip test_os.test_mode on Emscripten; this fails consistently on the buildbot, but not on other test configurations. Reported as pythonGH-135783 for follow up. (cherry picked from commit f491125) Co-authored-by: Hood Chatham <[email protected]>
1 parent b1d5e23 commit e2bd638

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)