Skip to content

Commit 62363bf

Browse files
authored
gh-84461: Skip test_unwritable_directory again on Emscripten (GH-94007)
GH-93992 removed geteuid() and enabled the test again on Emscripten.
1 parent 2702e40 commit 62363bf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_import/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,7 @@ def test_import_pyc_path(self):
889889
"due to varying filesystem permission semantics (issue #11956)")
890890
@skip_if_dont_write_bytecode
891891
@os_helper.skip_unless_working_chmod
892+
@unittest.skipIf(is_emscripten, "umask is a stub")
892893
def test_unwritable_directory(self):
893894
# When the umask causes the new __pycache__ directory to be
894895
# unwritable, the import still succeeds but no .pyc file is written.

0 commit comments

Comments
 (0)