Skip to content

Commit b39bb19

Browse files
authored
Merge pull request #80 from benlangmuir/parallel
[build-script] Add --parallel to supress output on success
2 parents 2fa1468 + 2dae05b commit b39bb19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/build-script-helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def add_common_args(parser):
8686
tests = os.path.join(bin_path, 'isdb-tests')
8787
print('Cleaning ' + tests)
8888
shutil.rmtree(tests, ignore_errors=True)
89-
swiftpm('test', swift_exec, swiftpm_args, env)
89+
swiftpm('test', swift_exec, swiftpm_args + ['--parallel'], env)
9090
else:
9191
assert False, 'unknown action \'{}\''.format(args.action)
9292

0 commit comments

Comments
 (0)