Skip to content

Commit 6bdd9e2

Browse files
[3.13] gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855) (GH-139675)
gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855) (cherry picked from commit 171f787) Co-authored-by: Furkan Onder <[email protected]>
1 parent 7816ac3 commit 6bdd9e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_import/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,6 +1206,7 @@ class substr(str):
12061206

12071207
@unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows')
12081208
@unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos')
1209+
@unittest.skipIf(sys.platform.startswith('aix'), 'Cannot delete cwd on AIX')
12091210
def test_script_shadowing_stdlib_cwd_failure(self):
12101211
with os_helper.temp_dir() as tmp:
12111212
subtmp = os.path.join(tmp, "subtmp")

0 commit comments

Comments
 (0)