Skip to content

Commit

Permalink
fix: set default repeat and timeout for JSEvaluator
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Jul 30, 2021
1 parent dbd7db1 commit 7fbccd7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bugmon/evaluator_configs/js.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,9 @@ def iterate(cls, bug: EnhancedBug, working_dir: Path) -> Iterator["SimpleJSConfi
continue

processed.append(filename)
yield cls(filename, flags=bug.runtime_opts)
yield cls(
filename,
flags=bug.runtime_opts,
repeat=10,
timeout=60,
)

0 comments on commit 7fbccd7

Please sign in to comment.