more convinient local testing

This commit is contained in:
CurtizJ 2020-01-14 16:57:40 +03:00
parent 0a616ea51c
commit d43d189769
11 changed files with 5 additions and 1 deletions

View File

@ -182,7 +182,11 @@ def run_tests_array(all_tests_with_params):
or 'global' in name):
print(MSG_SKIPPED + " - no shard")
skipped_total += 1
elif not args.no_long and 'long' in name:
elif not args.no_long and ('long' in name
# Tests for races and deadlocks usually are runned in loop
# for significant amount of time
or 'deadlock' in name
or 'race' in name):
print(MSG_SKIPPED + " - no long")
skipped_total += 1
else: