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
I have a lot of violations fro my pytest fixtures like this one
@pytest.mark.parametrize( ("is_verified", "status_code"), [ (True, web.HTTPOk.status_code), (False, web.HTTPUnauthorized.status_code), ])
It's unclear from doc examples how to fix it. Documentation contains only simple examples.
I suggest adding one complex example like the above one.
The text was updated successfully, but these errors were encountered:
@pytest.mark.parametrize(('is_verified', 'status_code'), [ (True, web.HTTPOk.status_code), (False, web.HTTPUnauthorized.status_code), ])
Will you please update the docs?
Sorry, something went wrong.
Of course. #1022
Successfully merging a pull request may close this issue.
I have a lot of violations fro my pytest fixtures like this one
It's unclear from doc examples how to fix it. Documentation contains only simple examples.
I suggest adding one complex example like the above one.
The text was updated successfully, but these errors were encountered: