Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a44361e

Browse files
committed
LongReprTest fails on the Mac because it uses filenames with more than
32 characters per component. This makes mkdir() calls and such fail with EINVAL. For now I am disabling the test on the Mac, and I'll open a bugreport.
1 parent eb2d36c commit a44361e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_repr.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,4 +266,5 @@ def __repr__(self):
266266

267267

268268
run_unittest(ReprTests)
269-
run_unittest(LongReprTest)
269+
if os.name != 'mac':
270+
run_unittest(LongReprTest)

0 commit comments

Comments
 (0)