Skip to content

Commit 171f787

Browse files
authored
gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855)
1 parent 7c70cc5 commit 171f787

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
@@ -1187,6 +1187,7 @@ class substr(str):
11871187

11881188
@unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows')
11891189
@unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos')
1190+
@unittest.skipIf(sys.platform.startswith('aix'), 'Cannot delete cwd on AIX')
11901191
def test_script_shadowing_stdlib_cwd_failure(self):
11911192
with os_helper.temp_dir() as tmp:
11921193
subtmp = os.path.join(tmp, "subtmp")

0 commit comments

Comments
 (0)