You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
parser.add_argument('target_repetitions', type=int, default=0, nargs='?', help='ensure all tests ran at least TARGET_REPETITIONS times. If not present, it will be guessed by taking the most repeated test.')
parser.add_argument('--dry-run', action='store_true', help='do not actually run the tests, only count them')
parser.add_argument('--debug', action='store_true', help='drop to bash after each experiment, right before the cleanup')
print("{} tests to be run in order to hit {} repetitions for each experiment.\nThis should take no more than {}.".format(run_tests, target_repetitions, formatted_time))
else:
print("All tests ran already at least {} times.".format(target_repetitions))