1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

trace tests update

This commit is contained in:
Shadi Endrawis
2018-10-02 17:55:16 +03:00
parent 51726a5b80
commit f7990d4003
79 changed files with 10105 additions and 9539 deletions

View File

@@ -189,7 +189,7 @@ def main():
help="(flag) run tests in parallel",
action='store_true')
parser.add_argument('-mt', '--max_threads',
help="(string) Name of a preset(s) to ignore (comma separated, and as configured in presets.py)",
help="(int) maximum number of threads to run in parallel",
default=multiprocessing.cpu_count()-2,
type=int)
@@ -210,6 +210,7 @@ def main():
presets_to_ignore = args.ignore_presets.split(',')
else:
presets_to_ignore = []
for idx, preset_name in enumerate(sorted(presets_lists)):
if args.stop_after_first_failure and fail_count > 0:
break