Skip to content

Commit

Permalink
fix: only close bug if we actually tested the original build
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Aug 31, 2021
1 parent 9261167 commit 9ef08f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bugmon/bugmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ def _confirm_open(self) -> None:
)

# Remove from further analysis
self._close_bug = True
if orig.status != EvaluatorResult.BUILD_FAILED:
self._close_bug = True

# Set confirmed status and remove the confirm command
self.add_command("confirmed")
Expand Down

0 comments on commit 9ef08f2

Please sign in to comment.