We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46da15 commit 90ad3e2Copy full SHA for 90ad3e2
hypothesis-python/src/hypothesis/internal/conjecture/engine.py
@@ -508,6 +508,11 @@ def test_function(self, data: ConjectureData) -> None:
508
# to a buffer
509
data = ConjectureData.for_ir_tree(data.examples.ir_tree_nodes)
510
self.__stoppable_test_function(data)
511
+ data.freeze()
512
+ # should we raise Flaky here instead?
513
+ if data.status != Status.INTERESTING:
514
+ self.exit_with(ExitReason.flaky)
515
+
516
self._cache(data)
517
518
key = data.interesting_origin
0 commit comments