Skip to main content

Conditional coverage based on any rules you define!

Project description

coverage-conditional-plugin

wemake.services Build Status Python Version wemake-python-styleguide

Conditional coverage based on any rules you define!

Some project 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.

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

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.

Writting 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 also provide a bunch of helpers to make writing rules easier:

  • sys_version_info is the same as sys.version_info
  • os_name is the same as os.name
  • os_environ is the same as os.environ
  • platform_system is the same as platform.system()
  • platform_release is the same as platform.release()
  • is_installed is our custom function that tries to import the passed string, returns bool value
  • package_version is our custom function that tries to get package version from pkg_resources and returns its parsed version

License

MIT

Credits

This project was generated with wemake-python-package. Current template version is: a61725009d8399ae77376b5ad9de354214bc1159. See what is updated since then.

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

coverage-conditional-plugin-0.1.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file coverage-conditional-plugin-0.1.0.tar.gz.

File metadata

File hashes

Hashes for coverage-conditional-plugin-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9941bf2005e745190d24a6213ad681cb8884451192c668b4841b00cdc76c5f6e
MD5 3bb62b42105388870c246f918f103527
BLAKE2b-256 a38b981ad2050348a6a31cb90595a671e009c9575221ec6e8a7dedcccef3f92e

See more details on using hashes here.

File details

Details for the file coverage_conditional_plugin-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for coverage_conditional_plugin-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7e8f0ce79aeb06ca611244f3f379afcb52d972f6bb8911029475477db8cc95c6
MD5 4204258ca39a10cb07b2cabaf74d3542
BLAKE2b-256 10e9f0aed456f3c12d396fb3645c9411e0de8cbb461e21e93c65a57954a335c5

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page