8000 Only skip multiprocessing inside of Travis · matplotlib/matplotlib@f2410a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit f2410a5

Browse files
committed
Only skip multiprocessing inside of Travis
1 parent f8bbd2e commit f2410a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def run_2to3(self, files):
297297
# We need to skip certain files that have already been
298298
# converted to Python 3.x
299299
filtered = [x for x in 56B4 files if should_2to3(x, self.build_lib)]
300-
if sys.platform.startswith('win') or True:
300+
if sys.platform.startswith('win') or 'TRAVIS' in os.environ:
301301
# doing this in parallel on windows may crash your computer
302302
[refactor(f) for f in filtered]
303303
else:

0 commit comments

Comments
 (0)
0