From: Hood Chatham Date: Sat, 21 Jun 2025 06:06:59 +0000 (-0700) Subject: gh-127146: Skip test_os.test_mode for Emscripten (#135764) X-Git-Tag: v3.15.0a1~1225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4911258a80409cb641f13578137475204ab43b5;p=thirdparty%2FPython%2Fcpython.git gh-127146: Skip test_os.test_mode for Emscripten (#135764) Temporarily skip test_os.test_mode on Emscripten; this fails consistently on the buildbot, but not on other test configurations. Reported as #135783 for follow up. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 8f56b4559f46..5217037ae9d8 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -1918,6 +1918,10 @@ class MakedirTests(unittest.TestCase): support.is_wasi, "WASI's umask is a stub." ) + @unittest.skipIf( + support.is_emscripten, + "TODO: Fails in buildbot; see #135783" + ) def test_mode(self): with os_helper.temp_umask(0o002): base = os_helper.TESTFN