Skip to main content

pytest plugin to check FLAKE8 requirements

Project description

pytest plugin for efficiently checking PEP8 compliance

Version PyPi CI Issues PRs

Download stats

Usage

Install by running the command:

pip install pytest-flake8-v2

After installing it, when you run tests with the option:

pytest --flake8

every file ending in .py will be discovered and checked with flake8.

Note

If optional flake8 plugins are installed, those will be used automatically. You can configure them via flake8 section in the pytest.ini file or with a standalone flake8 config file (the path can be configure via flake8-pytest pytest config parameter).

Warning

Running flake8 tests on your project is likely to cause a number of issues. The plugin allows one to configure on a per-project and per-file basis which errors or warnings to ignore, see flake8-ignore.

Configuring FLAKE8 options per project and file

Flake8 config file

Flake8-pytest automatically sets flake8 config file to match pytest config file path. This means that you can configure flake8 by adding a [flake8] section to the pytests' config.

#
[pytest]
markers = flake8

[flake8]
max-line-length = 71
ignore = W292 ; ignore "no newline at end of file"

You can override this default by using flake8-config parameter

[pytest]
flake8-config = ./pytest.ini

If path relative, than it is treated as relative to pytests' config file.

Extra CLI parameters

You can set flake8-cli-arguments pytest config if you want to pass additional CLI arguments to the flake8. E.g.

[pytest]
flake8-cli-arguments = --max-line-length 71

Will cause for all flake8 tests to be called with an equivalent of flake8 --max-line-length 71 <target_file.py> command.

Misc

You may configure flake8-checking options for your project by adding an flake8-ignore entry to your setup.cfg or tox.ini file like this:

# content of setup.cfg
[tool:pytest]
flake8-ignore = E201 E231

This would globally prevent complaints about two whitespace issues. Rerunning with the above example will now look better:

$ pytest -q  --flake8
collecting ... collected 1 items
.
1 passed in 0.01 seconds

If you have some files where you want to specifically ignore some errors or warnings you can start a flake8-ignore line with a glob-pattern and a space-separated list of codes:

# content of setup.cfg
[tool:pytest]
flake8-ignore = 
    *.py E201
    doc/conf.py ALL

So if you have a conf.py like this:

# content of doc/conf.py

func (  [1,2,3]) #this line lots PEP8 errors :)

then running again with the previous example will show a single failure and it will ignore doc/conf.py alltogether:

$ pytest --flake8 -v # verbose shows what is ignored
======================================= test session starts ========================================
platform darwin -- Python 2.7.6 -- py-1.4.26 -- pytest-2.7.0 -- /Users/tholo/Source/pytest/bin/python
cachedir: /Users/tholo/Source/pytest/src/verify/.cache
rootdir: /Users/tholo/Source/angular/src/verify, inifile: setup.cfg
plugins: flake8, cache
collected 1 items

myfile.py PASSED

========================================= 1 passed in 0.00 seconds =========================================

Note that doc/conf.py was not considered or imported.

FAQs

All the flake8 tests are skipping!

This is by design. Clean flake8 results are cached and, unless the file is modified, not tested again.

You can run with pytest --cache-clear --flake8 to override this.

Notes

The repository of this plugin is at https://github.com/VRGhost/pytest-flake8

For more info on pytest see http://pytest.org

The code is partially based on Ronny Pfannschmidt's pytest-codecheckers plugin.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-flake8-v2-1.2.3.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

pytest_flake8_v2-1.2.3-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest-flake8-v2-1.2.3.tar.gz.

File metadata

  • Download URL: pytest-flake8-v2-1.2.3.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pytest-flake8-v2-1.2.3.tar.gz
Algorithm Hash digest
SHA256 9faa758da09617dbbeb735848867f5d919ba15cf16d84e76b4d5b69f5e3e22b7
MD5 34929adfffd30d3093b44c78f63053a7
BLAKE2b-256 a63ede433fcab7032186c902895282f9dad409a3820ef2fb73d28252a6f6eda0

See more details on using hashes here.

File details

Details for the file pytest_flake8_v2-1.2.3-py3-none-any.whl.

File metadata

  • Download URL: pytest_flake8_v2-1.2.3-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pytest_flake8_v2-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c39d708bf37059ef1d56681431ef86519fdd36c0cc81652c88b4e721da08a530
MD5 63ac21f3ebec0080a2827a610f1ad932
BLAKE2b-256 66775fc01d522631ebb1467dd8c8563c12bb0a1e1ce1aeb43daf9e52b7c667a1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page