A flake8 plugin checking common style issues or inconsistencies with pytest-based tests.
Project description
flake8-pytest-style
Description
A flake8 plugin checking common style issues or inconsistencies with pytest-based tests.
Currently the following errors are reported:
| Code | Description |
|---|---|
| PT001 | use @pytest.fixture over @pytest.fixture() (configurable by pytest-fixture-no-parentheses) |
| PT002 | configuration for fixture '{name}' specified via positional args, use kwargs |
| PT003 | scope='function' is implied in @pytest.fixture() |
| PT004 | fixture '{name}' does not return anything, add leading underscore |
| PT005 | fixture '{name}' returns a value, remove leading underscore |
| PT006 | wrong name(s) type in @pytest.mark.parametrize, expected {expected_type} (configurable by pytest-parametrize-names-type) |
| PT007 | wrong values type in @pytest.mark.parametrize, expected {expected_type} (configurable by pytest-parametrize-values-type and pytest-parametrize-values-row-type) |
| PT008 | use return_value= instead of patching with lambda |
| PT009 | use a regular assert instead of unittest-style '{assertion}' |
| PT010 | set the expected exception in pytest.raises() |
| PT011 | pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception (configurable by pytest-raises-require-match-for) |
| PT012 | pytest.raises() block should contain a single simple statement |
| PT013 | found incorrect import of pytest, use simple 'import pytest' instead |
| PT014 | found duplicate test cases {indexes} in @pytest.mark.parametrize |
| PT015 | assertion always fails, replace with pytest.fail() |
| PT016 | no message passed to pytest.fail() |
| PT017 | found assertion on exception {name} in except block, use pytest.raises() instead |
| PT018 | assertion should be broken down into multiple parts |
| PT019 | fixture {name} without value is injected as parameter, use @pytest.mark.usefixtures instead |
| PT020 | @pytest.yield_fixture is deprecated, use @pytest.fixture |
| PT021 | use yield instead of request.addfinalizer |
| PT022 | no teardown in fixture {name}, use return instead of yield |
| PT023 | use @pytest.mark.foo over @pytest.mark.foo() (configurable by pytest-mark-no-parentheses) |
| PT024 | pytest.mark.asyncio is unnecessary for fixtures |
| PT025 | pytest.mark.usefixtures has no effect on fixtures |
| PT026 | useless pytest.mark.usefixtures without parameters |
| PT027 | use pytest.raises() instead of unittest-style '{assertion}' |
| PT028 | test function {name} has default value for argument {arg}, remove it |
| PT029 | set the expected warning in pytest.warns() |
| PT030 | pytest.warns({warning}) is too broad, set the match parameter or use a more specific warning (configurable by pytest-warns-require-match-for) |
| PT031 | pytest.warns() block should contain a single simple statement |
Installation
pip install flake8-pytest-style
Configuration
The plugin has the following configuration options:
pytest-fixture-no-parentheses— see PT001pytest-parametrize-names-type— see PT006pytest-parametrize-values-type— see PT007pytest-parametrize-values-row-type— see PT007pytest-raises-require-match-for— see PT011pytest-mark-no-parentheses— see PT023pytest-warns-require-match-for— see PT030
For developers
Install deps and setup pre-commit hook
make init
Run linters, autoformat, tests etc.
make format lint test
Bump new version
make bump_major
make bump_minor
make bump_patch
License
MIT
Change Log
Unreleased
...
2.2.0 - 2025-10-20
- require at least Python 3.10
- support Python 3.14
2.1.0 - 2025-01-10
- support
reason=kwarg inpytest.failfor PT016 - add PT028 (checks for default values in test functions)
- add PT029 (checks for
pytest.warnswithout expected warning) - add PT030 (checks for too broad
pytest.warnsclauses) - add PT031 (checks for multiple statements in
pytest.warnsblocks) - require at least Python 3.9
- support Python 3.13
2.0.0 - 2024-04-01
- BREAKING: invert default values for
pytest-fixture-no-parenthesesandpytest-mark-no-parenthesesto conform withpytestofficial style - require at least Python 3.8.1
- support Python 3.12
1.7.2 - 2023-02-15
- fix false positive for PT009 on
pytest.fail
1.7.1 - 2023-02-15
1.7.0 - 2023-02-09
- require at least Python 3.7.2
- support Python 3.11
- add PT027 (checks for unittest-style
assertRaises)
1.6.0 - 2021-12-23
- require at least Python 3.6.2
- expose
py.typedfile
1.5.1 - 2021-11-05
- better wording for PT011
- support Python 3.10
1.5.0 - 2021-06-18
- add PT025 (checks for erroneous
pytest.mark.usefixtureson fixtures) - add PT026 (checks for
pytest.mark.usefixtureswithout parameters)
1.4.4 - 2021-06-17
1.4.2 - 2021-05-24
- update
flake8-plugin-utilsversion to improve stability
1.4.1 - 2021-04-01
- fix argparse-related warnings
1.4.0 - 2021-03-14
- add PT023 (checks for parentheses consistency in
pytest.markusage) - add PT024 (checks for unnecessary
pytest.mark.asyncioon fixtures) - fix PT004, PT005 firing on abstract fixtures
- fix PT012 firing on
withstatements containing a singlepass
1.3.0 - 2020-08-30
- add PT022 (checks for
yieldfixtures without teardown)
1.2.3 - 2020-08-06
- update
flake8-plugin-utilsdependency to fix encoding problems on Windows
1.2.2 - 2020-07-23
1.2.1 - 2020-06-15
- fix PT021 for factory fixtures (#46)
1.2.0 - 2020-06-12
- support scoped
mockerfixtures frompytest-mockfor PT008 - check for positional-only lambda arguments in PT008
- add PT020 (checks for
pytest.yield_fixture) - add PT021 (checks for
request.addfinalizer) - add documentation pages for all rules
1.1.1 - 2020-04-17
- fix PT011 not reporting
match=''as a violation
1.1.0 - 2020-04-14
- add PT015 (checks for
assert False) - add PT016 (checks for
pytest.fail()without message) - add PT017 (checks for assertions on exceptions in
exceptblocks) - add PT018 (checks for composite assertions)
- add PT019 (checks for fixtures without value injected as parameters)
1.0.0 - 2020-03-26
- add PT014 (checks for duplicate test cases in
@pytest.mark.parametrize)
0.6.0 - 2020-03-21
- add configuration option
pytest-parametrize-names-typefor PT006 - add configuration options
pytest-parametrize-values-typeandpytest-parametrize-values-row-typefor PT007
0.5.0 - 2020-03-09
- add configuration option
pytest-fixture-no-parenthesesfor PT001 - add PT013 (checks for
from-imports frompytest)
0.4.0 - 2020-03-09
- add PT012 (checks for multiple statements in
with pytest.raises())
0.3.1 - 2020-03-09
- fix default value of
pytest-raises-require-match-forconfig option
0.3.0 - 2020-03-09
0.2.0 - 2020-03-01
- add PT009 (ported from flake8-pytest)
0.1.3 - 2019-05-24
- add
yieldfixtures support - fix changelog entry for 0.1.2
0.1.2 - 2019-05-23
- fix parametrize checkers not working in decorators
0.1.1 - 2019-05-23
- update PyPI description
0.1.0 - 2019-05-23
- initial
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flake8_pytest_style-2.2.0.tar.gz.
File metadata
- Download URL: flake8_pytest_style-2.2.0.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.9 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d23a33294bccfb9f1b11aaf5212256727b299b9c9b17cf21e230c52c1095a468
|
|
| MD5 |
ab78a3812e4831effa85581afa69b823
|
|
| BLAKE2b-256 |
4a18b5115b91db2eca4d287d578f2f97c5e99e713ce4cb747774076f5a42fe1c
|
File details
Details for the file flake8_pytest_style-2.2.0-py3-none-any.whl.
File metadata
- Download URL: flake8_pytest_style-2.2.0-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.13.9 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d01c4198a6c4e0ab759a92a0fa7710f10d83ec28e32a50ab6fb2e10f973a2f36
|
|
| MD5 |
c7aa1e2cda11da12452c12efd4636208
|
|
| BLAKE2b-256 |
4dde36523c4defc0d02f1617de66e23cd18ad74b869d401269bba6d790abc95e
|