Upgrade flake8-pytest-style

The newly introduced "P023" error code must be disabled explicitly.
This commit is contained in:
Alexander Hess 2021-06-02 16:47:20 +02:00
commit 6636e56ec8
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 9 additions and 7 deletions

View file

@ -89,6 +89,8 @@ extend-ignore =
# Comply with black's style.
# Source: https://github.com/psf/black/blob/master/docs/compatible_configs.md#flake8
E203, W503, WPS348,
# Let's not do `@pytest.mark.no_cover()` instead of `@pytest.mark.no_cover`.
PT023,
# Google's Python Style Guide is not reStructuredText
# until after being processed by Sphinx Napoleon.
# Source: https://github.com/peterjc/flake8-rst-docstrings/issues/17