Skip to content

Commit

Permalink
fix: do not cache results when detecting configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Jul 30, 2021
1 parent 9f78759 commit 036f28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugmon/bugmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def detect_config(self) -> Optional[BaseEvaluatorConfig]:
[f"{k}:{v}" for k, v in evaluator.__dict__.items()]
)
log.info(f"Evaluator config: {evaluator_name} - {parameters}")
result = self._reproduce_bug(evaluator, branch, bid)
result = self._reproduce_bug(evaluator, branch, bid, False)
if result.status == EvaluatorResult.BUILD_CRASHED:
log.info("Successfully identified evaluator configuration!")
return evaluator
Expand Down

0 comments on commit 036f28e

Please sign in to comment.