We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If using the @hypothesis.example decorator, the settings.default.verbosity is changed to Verbosity.normal.
@hypothesis.example
settings.default.verbosity
Verbosity.normal
The following test case currently fails:
def test_example_respects_verbosity(): @settings(verbosity=Verbosity.verbose) @example(x=99) @given(integers()) def test(x): assert settings.default.verbosity == Verbosity.verbose test()
The text was updated successfully, but these errors were encountered:
This is probably a subtle problem somewhere in our internal scoping, similar to #944.
Sorry, something went wrong.
Zac-HD
Successfully merging a pull request may close this issue.
If using the
@hypothesis.exampledecorator, thesettings.default.verbosityis changed toVerbosity.normal.The following test case currently fails:
The text was updated successfully, but these errors were encountered: