Flake8-pytest-mark
Check and enforce the presence of a mark on a pytest test definition classes, methods and functions.
Quick Start Guide
-
Install
flake8-pytest-mark
from PyPI with pip:$ pip install flake8-pytest-mark
-
Configure a mark that you would like to validate:
$ cd project_root/ $ vi .flake8
[flake8]
pytest_mark1 = name=test_id
value_match=uuid
-
Run flake8:
$ flake8 tests/
Gotchas
- It is highly recommended to use this plugin inside of a virtualenv.
- A configuration is required by this plugin, if none is found the plugin will throw a M401 validation error for every file.
- By default this plug-in will enforce marks against pytest test classes. (See configuration for more details on how to exclude different pytest test definitions from mark checking.)
Violation Codes
All possible violation codes are documented in violation_codes
Example Configurations
More example configurations can be found in configuration
Contributing
See CONTRIBUTING.rst and developer_docs.rst for more details on developing for the Zigzag project.
Release Process
See release_process.rst for information on the release process for 'zigzag'
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.