We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae5795f commit b7441b5Copy full SHA for b7441b5
hypothesis-python/src/hypothesis/core.py
@@ -1104,7 +1104,9 @@ def _execute_once_for_engine(self, data: ConjectureData) -> None:
1104
if TESTCASE_CALLBACKS:
1105
if runner := getattr(self, "_runner", None):
1106
phase = runner._current_phase
1107
- elif self.failed_normally or self.failed_due_to_deadline:
+ elif (
1108
+ self.failed_normally or self.failed_due_to_deadline
1109
+ ): # pragma: no cover # FIXME
1110
phase = "shrink"
1111
else: # pragma: no cover # in case of messing with internals
1112
phase = "unknown"
0 commit comments