Skip to content

Commit b7441b5

Browse files
committed
hypothesis/core.py:1107-1108 FIXME
1 parent ae5795f commit b7441b5

File tree

1 file changed

+3
-1
lines changed
  • hypothesis-python/src/hypothesis

1 file changed

+3
-1
lines changed

hypothesis-python/src/hypothesis/core.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,9 @@ def _execute_once_for_engine(self, data: ConjectureData) -> None:
11041104
if TESTCASE_CALLBACKS:
11051105
if runner := getattr(self, "_runner", None):
11061106
phase = runner._current_phase
1107-
elif self.failed_normally or self.failed_due_to_deadline:
1107+
elif (
1108+
self.failed_normally or self.failed_due_to_deadline
1109+
): # pragma: no cover # FIXME
11081110
phase = "shrink"
11091111
else: # pragma: no cover # in case of messing with internals
11101112
phase = "unknown"

0 commit comments

Comments
 (0)