Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb48465 commit 3b10dc3Copy full SHA for 3b10dc3
1 file changed
Lib/test/test_largefile.py
@@ -23,11 +23,11 @@
23
name = test_support.TESTFN
24
25
26
-# On Windows this test comsumes large resources; It takes a long time to build
27
-# the >2GB file and takes >2GB of disk space therefore the resource must be
28
-# enabled to run this test. If not, nothing after this line stanza will be
29
-# executed.
30
-if sys.platform[:3] == 'win':
+# On Windows and Mac OSX this test comsumes large resources; It takes
+# a long time to build the >2GB file and takes >2GB of disk space
+# therefore the resource must be enabled to run this test. If not,
+# nothing after this line stanza will be executed.
+if sys.platform[:3] == 'win' or sys.platform == 'darwin':
31
test_support.requires(
32
'largefile',
33
'test requires %s bytes and a long time to run' % str(size))
0 commit comments