]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 6 Oct 2025 18:05:07 +0000 (20:05 +0200)
committerGitHub <noreply@github.com>
Mon, 6 Oct 2025 18:05:07 +0000 (18:05 +0000)
gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855)
(cherry picked from commit 171f787a297ec4b02cfe8b3ebab8374018391f20)

Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
Lib/test/test_import/__init__.py

index 35f34509d45ba34ebcf09694a7dfbcc2ebf4300d..064188c23f54fdd74f5264d3e8b523f29f58eada 100644 (file)
@@ -1206,6 +1206,7 @@ except ImportError as e:
 
     @unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows')
     @unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos')
+    @unittest.skipIf(sys.platform.startswith('aix'), 'Cannot delete cwd on AIX')
     def test_script_shadowing_stdlib_cwd_failure(self):
         with os_helper.temp_dir() as tmp:
             subtmp = os.path.join(tmp, "subtmp")