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.
This commit is contained in:
Hood Chatham 2025-06-20 23:06:59 -07:00 committed by GitHub
parent 4ddf505d99
commit f4911258a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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