Skip to content

Commit

Permalink
tests: Set threshold-config for MT tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucovsky committed Jan 22, 2024
1 parent 7dc4141 commit 4ffdea3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,6 +903,16 @@ def default_args(self):
args += ["--set", "reference-config-file=%s" % config]
break

threshold_configs = [
os.path.join(self.cwd, "threshold.config"),
]

for config in threshold_configs:
if os.path.exists(config):
args += ["--set", "threshold-file=%s" % config]
break


# Add other fixed arguments.
args += [
"--init-errors-fatal",
Expand Down

0 comments on commit 4ffdea3

Please sign in to comment.