Reduced the timeout for quick reg tests

This commit is contained in:
Trung Nguyen
2024-08-26 17:43:36 -05:00
parent 1148f5f5c8
commit a59ac7ec86
2 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@
in.bucky-plus-cnt*,
]
timeout: 60
timeout: 10
nugget: 1.0
epsilon: 1e-16

View File

@ -163,6 +163,7 @@ def iterate(lmp_binary, input_folder, input_list, config, results, progress_file
matched_pattern = False
for skipped_files in config['skip']:
if '*' in skipped_files:
# check input script name e.g. in.*_imd*
if fnmatch.fnmatch(input, skipped_files):
matched_pattern = True
break