Skip to main content

A plugin that reads a config.json file in your test root directory, searches the 'markers' key, lists the markers declared as 'true' as enabled markers and automatically adds -m option to the command line with an OR on the enabled markers.

Project description

PyPI version Python versions See Build Status on GitHub Actions

A plugin that reads a json file in your test root directory, searches the ‘markers’ key, lists the markers declared as ‘true’ as enabled markers and automatically adds -m option to the command line with an OR on the enabled markers.


This pytest plugin was generated with Cookiecutter along with @hackebrot’s cookiecutter-pytest-plugin template.

Requirements

  • json >= 2.0.9

Installation

You can install “pytest-himark” via pip from PyPI:

$ pip install pytest-himark

Usage

After installing this plugin, pytest will automatically load it when launching tests. You will simply need to add the –json option to the command line with the path to the json containing the markers you want to enable. Alternatively, you can add the –json option and the path in the pytest.ini directly, in the addopts variable.

Example:
  • pytest.ini:

addopts = --json=path/to/my/config.json
  • config.json:

{
    "markers": {
        "my_marker1": true,
        "my_marker2": true,
        "my_marker3": false
    }
}

Launching pytest now will automatically add he following to the command line:

>> pytest -m "my_marker1 or my_marker2"

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the MIT license, “pytest-himark” is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

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-himark-0.1.1.tar.gz (4.7 kB view hashes)

Uploaded Source

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