mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
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:
parent
4ddf505d99
commit
f4911258a8
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue