]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-127146: Skip test_os.test_mode for Emscripten (#135764)
authorHood Chatham <roberthoodchatham@gmail.com>
Sat, 21 Jun 2025 06:06:59 +0000 (23:06 -0700)
committerGitHub <noreply@github.com>
Sat, 21 Jun 2025 06:06:59 +0000 (06:06 +0000)
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.

Lib/test/test_os.py

index 8f56b4559f46c6d93983d00d2abd9b484220d0d9..5217037ae9d812157e81317bd2a8ebb37871b995 100644 (file)
@@ -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