We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 416f418 commit 574da46Copy full SHA for 574da46
Lib/test/test_shutil.py
@@ -37,6 +37,7 @@
37
TESTFN_SRC = TESTFN + "_SRC"
38
TESTFN_DST = TESTFN + "_DST"
39
MACOS = sys.platform.startswith("darwin")
40
+SOLARIS = sys.platform.startswith("sunos")
41
AIX = sys.platform[:3] == 'aix'
42
try:
43
import grp
@@ -1249,7 +1250,7 @@ def test_copyfile_same_file(self):
1249
1250
# Make sure file is not corrupted.
1251
self.assertEqual(read_file(src_file), 'foo')
1252
- @unittest.skipIf(MACOS or _winapi, 'On MACOS and Windows the errors are not confusing (though different)')
1253
+ @unittest.skipIf(MACOS or SOLARIS or _winapi, 'On MACOS, Solaris and Windows the errors are not confusing (though different)')
1254
def test_copyfile_nonexistent_dir(self):
1255
# Issue 43219
1256
src_dir = self.mkdtemp()
0 commit comments