summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-06-19 18:18:57 (GMT)
committerGitHub <noreply@github.com>2022-06-19 18:18:57 (GMT)
commit62363bfe59b236c324cf36cd69b6f586a125bc2b (patch)
tree4bf556c849aec3a773ea1f33baa11f17e9a758ff
parent2702e408fd0e0dd7aec396b4cf8c7ce9caae81d8 (diff)
downloadcpython-62363bfe59b236c324cf36cd69b6f586a125bc2b.zip
cpython-62363bfe59b236c324cf36cd69b6f586a125bc2b.tar.gz
cpython-62363bfe59b236c324cf36cd69b6f586a125bc2b.tar.bz2
gh-84461: Skip test_unwritable_directory again on Emscripten (GH-94007)
GH-93992 removed geteuid() and enabled the test again on Emscripten.
-rw-r--r--Lib/test/test_import/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py
index 8357586..ab7f887 100644
--- a/Lib/test/test_import/__init__.py
+++ b/Lib/test/test_import/__init__.py
@@ -889,6 +889,7 @@ class PycacheTests(unittest.TestCase):
"due to varying filesystem permission semantics (issue #11956)")
@skip_if_dont_write_bytecode
@os_helper.skip_unless_working_chmod
+ @unittest.skipIf(is_emscripten, "umask is a stub")
def test_unwritable_directory(self):
# When the umask causes the new __pycache__ directory to be
# unwritable, the import still succeeds but no .pyc file is written.