Conditional coverage based on any rules you define!
Project description
coverage-conditional-plugin
Conditional coverage based on any rules you define!
Some projects have different parts that relies on different environments:
- Python version, some code is only executed on specific versions and ignored on others
- OS version, some code might be Windows, Mac, or Linux only
- External packages, some code is only executed when some 3rd party package is installed
Current best practice is to use # pragma: no cover
for this places in our project.
This project allows to use configurable pragmas
that include code to the coverage if some condition evaluates to true,
and fallback to ignoring this code when condition is false.
Read the announcing post.
Installation
pip install coverage-conditional-plugin
Then you will need to add to your setup.cfg
or .coveragerc
file
some extra configuration:
[coverage:run]
# Here we specify plugins for coverage to be used:
plugins =
coverage_conditional_plugin
[coverage:coverage_conditional_plugin]
# Here we specify our pragma rules:
rules =
"sys_version_info >= (3, 8)": py-gte-38
"is_installed('mypy')": has-mypy
Or to your pyproject.toml
:
[tool.coverage.run]
# Here we specify plugins for coverage to be used:
plugins = ["coverage_conditional_plugin"]
[tool.coverage.coverage_conditional_plugin.rules]
# Here we specify our pragma rules:
py-gte-38 = "sys_version_info >= (3, 8)"
has-mypy = "is_installed('mypy')"
Adapt rules to suit your needs!
Example
Imagine that we have this code:
try: # pragma: has-django
import django
except ImportError: # pragma: has-no-django
django = None
def run_if_django_is_installed():
if django is not None: # pragma: has-django
...
And here's the configuration you might use:
[coverage:coverage_conditional_plugin]
rules =
"is_installed('django')": has-django
"not is_installed('django')": has-no-django
When running tests with and without django
installed
you will have 100%
coverage in both cases.
But, different lines will be included.
With django
installed it will include
both try:
and if django is not None:
conditions.
When running without django
installed,
it will include except ImportError:
line.
Writing pragma rules
Format for pragma rules is:
"pragma-condition": pragma-name
Code inside "pragma-condition"
is evaluted with eval
.
Make sure that the input you pass there is trusted!
"pragma-condition"
must return bool
value after evaluation.
We support all environment markers specified in PEP-496. See Strings and Version Numbers sections for available values. Also, we provide a bunch of additional markers:
sys_version_info
is the same assys.version_info
os_environ
is the same asos.environ
is_installed
is our custom function that tries to import the passed string, returnsbool
valuepackage_version
is our custom function that tries to get package version frompkg_resources
and returns its parsed version
Use get_env_info
to get values for the current environment:
from coverage_conditional_plugin import get_env_info
get_env_info()
License
Credits
This project was generated with wemake-python-package
. Current template version is: a61725009d8399ae77376b5ad9de354214bc1159. See what is updated since then.
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
File details
Details for the file coverage-conditional-plugin-0.3.0.tar.gz
.
File metadata
- Download URL: coverage-conditional-plugin-0.3.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.7.7 Darwin/18.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1cae6da031be0c7024e650d1fd3d63f679b6e8a7286925e3dfb1b432190ad40 |
|
MD5 | 8df63742cad411bbf4c90adb1b12ea24 |
|
BLAKE2b-256 | d1e5d15e2ccd4c1a0f5b88b3ea28966f268eda69bccab9060a6953ab7ca85b9a |
File details
Details for the file coverage_conditional_plugin-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: coverage_conditional_plugin-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.7.7 Darwin/18.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0109fc7ef935883a3a122fc60f6ff57bb8a56dedfe5d7f08695a3aeeb295cf34 |
|
MD5 | 030177d09a772569efd76c80f6d3f50e |
|
BLAKE2b-256 | bd5ce20d55d31f2897e295afc1f23489353687b3394826a96202f882da948456 |