Skip to main content

pytest plugin to check FLAKE8 requirements

Project description

https://img.shields.io/pypi/v/pytest-flake8.svg https://img.shields.io/pypi/pyversions/pytest-flake8.svg https://img.shields.io/pypi/implementation/pytest-flake8.svg https://img.shields.io/pypi/status/pytest-flake8.svg https://travis-ci.org/tholo/pytest-flake8.svg?branch=master https://img.shields.io/github/issues/tholo/pytest-flake8.svg https://img.shields.io/github/issues-pr/tholo/pytest-flake8.svg

Usage

Install by running the command:

pip install pytest-flake8

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

pytest --flake8

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

Configuring FLAKE8 options per project and file

Maximum line length can be configured for the whole project by adding a flake8-max-line-length option to your setup.cfg or tox.ini file like this:

# content of setup.cfg
[pytest]
flake8-max-line-length = 99

Note that the default will be what naturally comes with flake8 (which it turn gets its default from pycodestyle).

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
[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
[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.

Notes

The repository of this plugin is at https://github.com/tholo/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-0.9.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

pytest_flake8-0.9.1-py2.py3-none-any.whl (7.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pytest-flake8-0.9.1.tar.gz.

File metadata

File hashes

Hashes for pytest-flake8-0.9.1.tar.gz
Algorithm Hash digest
SHA256 e716072d07a557defdd5c4141984569731e292961370a5663c1697283aa16200
MD5 f16c46d0fa88e07606b0c444d697d815
BLAKE2b-256 e587345c1423d3dd7c27247b61c71192c9b94a5f980647389e622ac41ff92a3d

See more details on using hashes here.

Provenance

File details

Details for the file pytest_flake8-0.9.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_flake8-0.9.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e67686645860009cf1f9a5016e110234b4a2c4584711d62ba753ed651ab9ab28
MD5 e70d2f72fbe35d9a4d1bab70107cc3c5
BLAKE2b-256 343f157aaa9031857e922d4c59627652427af1f5d893017778b3f01d797d8323

See more details on using hashes here.

Provenance

Supported by

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