HypothesisWorks / hypothesis

Hypothesis is a powerful, flexible, and easy to use library for property-based testing.
https://hypothesis.works
Other
7.53k stars 586 forks source link

Improve internal warning tests #4023

Closed jobh closed 2 months ago

jobh commented 3 months ago

Fixes #4021

When a warning is raised (due to -Werror) during test execution, it may cause the test to raise Flaky from StopTest. This makes the error message less informative.

This PR makes HypothesisWarning fatal, not only HypothesisDeprecationWarning. Because the warnings are meant to be seen.

jobh commented 3 months ago

...mind, I sense a whiff of overengineering here.