https://github.com/python/cpython/commit/69309a55bcb5381a9a218edc910da135f4d67479 commit: 69309a55bcb5381a9a218edc910da135f4d67479 branch: main author: Jakub KulĂk <kulik...@gmail.com> committer: vstinner <vstin...@python.org> date: 2025-03-11T10:09:04+01:00 summary:
gh-130932: cwd cannot be removed on Solaris/Illumos (#131037) files: M Lib/test/test_import/__init__.py diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index bf2bf066ceeb9e..33df4fef0b247c 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -1186,6 +1186,7 @@ class substr(str): self.assertRegex(line, rb"cannot import name 'Fraction' from 'fractions' \(.*\)") @unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows') + @unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos') def test_script_shadowing_stdlib_cwd_failure(self): with os_helper.temp_dir() as tmp: subtmp = os.path.join(tmp, "subtmp") _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com