8000 gh-127146: Fix Emscripten test suite when run with -uall by hoodmane · Pull Request #132092 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-127146: Fix Emscripten test suite when run with -uall #132092

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
skip test_mode
  • Loading branch information
hoodmane committed Apr 7, 2025
commit b96b18d8ed6418f0d2385c775cd4dd1b7d6e6335
4 changes: 4 additions & 0 deletions Lib/test/test_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -1915,6 +1915,10 @@ def test_makedir(self):
'dir5', 'dir6')
os.makedirs(path)

@unittest.skipIf(
support.is_emscripten,
"Failing in the buildbot, but I can't reproduce. TODO: investigate this."
)
@unittest.skipIf(
support.is_wasi,
"WASI's umask is a stub."
Expand Down
Loading
0