From 75dac32a0a1c6755e41735c9098d4932c001e405 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Wed, 23 Jul 2014 14:30:55 -0700 Subject: [PATCH] single threaded for profile-installed.py --- profile-installed.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/profile-installed.py b/profile-installed.py index 485792f51..be9a960d2 100755 --- a/profile-installed.py +++ b/profile-installed.py @@ -21,14 +21,6 @@ if len(sys.argv) == 1: # Make sure that nose doesn't muck with our paths. if ('--no-path-adjustment' not in sys.argv) and ('-P' not in sys.argv): sys.argv.insert(1, '--no-path-adjustment') - -if 'NOSE_PROCESSES' not in os.environ: - for arg in sys.argv: - if '--processes' in arg: - break - else: # for - sys.argv.insert(1, '--processes=-1') # -1 == number of cores - sys.argv.insert(1, '--process-timeout=30') if __name__ == '__main__': profile.run("nose.main()", sort=2)