mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-24 07:01:13 +02:00
Do not pregenerate update payloads in parallel.
TBR dgarret Change-Id: I71ef4b02108f43717e4bc404290952df99112654 BUG=n0ne TEST=NA Review URL: http://codereview.chromium.org/6349021
This commit is contained in:
parent
0fdf2a7aeb
commit
19ef17732c
@ -911,7 +911,9 @@ def _RunTestsInParallel(parser, options, test_class):
|
||||
threads.append(unittest.TextTestRunner().run)
|
||||
args.append(test_case)
|
||||
|
||||
results = _RunParallelJobs(options.jobs, threads, args, print_status=False)
|
||||
# TODO(sosa): Set back to options.jobs once parallel generation is
|
||||
# no longer flaky.
|
||||
results = _RunParallelJobs(1, threads, args, print_status=False)
|
||||
for test_result in results:
|
||||
if not test_result.wasSuccessful():
|
||||
Die('Test harness was not successful')
|
||||
|
Loading…
x
Reference in New Issue
Block a user