Skip to main content

pytest plugin to instrument tests

Project description

PyPI version Python versions PyPI - Downloads See Build Status on Circle CI https://img.shields.io/badge/code%20style-black-000000.svg MIT license

A pytest plugin to instrument tests and write the resulting records to file


Features

  • a log file with one record for each setup/call/teardown of each test containing:

    • session id and record id (UUIDs generated by plugin)

    • node_id (pytest’s nodeid)

    • when (setup, call or teardown)

    • outcome (passed, failed or skipped)

    • start, stop and duration

    • labels (array) and tags (object) via @pytest.mark.instrument() decorator

    • fixtures

  • hooks to edit labels, tags and fixtures before the record is written to file

  • a logger to emit records with session id, record id, node id to the same log file

Requirements

  • Python 3.6 or higher

  • pytest 5.1.0 or higher

Installation

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

$ pip install pytest-instrument

Usage

Run your tests with:

$ pytest --instrument=json

An ./artifacts directory will be created if it doesn’t exist yet. For each pytest session one .log file will be written to that directory. The format of the filename is %Y%m%dT%H%M%S_<first group of session id>.log.

To display the contents of the .log file, use jq: jq . <filename>. Or, if for instance you only want to see the message object of each record: jq '{message: .message}' <filename>

The logger reporting on the outcome of pytest’s setup, call and teardown is named “instr.report”.

The logger emitting records to the same file as the “instr.report” logger is named “instr.log”. You can use this logger like this:

logger = logging.getLogger("instr.log")
logger.info("log record of level info")

You can also create children of that logger, which will emit records to that same file:

sublogger = logging.getLogger("instr.log").getChild("sublogger")
logger.warning("log record of level warning")

The session id and node id of the “instr.log” logger and its children are set automatically in the getChild() method. The node id is updated automatically via pytests’s pytest_runtest_setup() hook.

Labels and tags

You can add labels and tags to tests with the plugin’s mark decorator:

@pytest.mark.instrument("a_label", my_tag="tagged")

All args, such as "a_label", are put in the json array labels. All kwargs, such as my_tag="tagged", are put in the json object tags.

Hooks

  • pytest_instrument_labels: edit list of labels after they’ve been parsed by the plugin

  • pytest_instrument_tags: edit dictionary of tags after they’ve been parsed by the plugin

  • pytest_instrument_fixtures: edit list of fixtures after they’ve been parsed by the plugin

Changelog

Consult the changelog for fixes and enhancements of each version.

Issues/Requests

Please use the GitHub issue tracker to submit bugs or request features.

Contributing

Contributions are welcome. Tests can be run with tox, please ensure black code formatting and good test coverage before you submit a pull request.

License

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

Acknowledgements

Thank you to Maaret Pyhäjärvi for inspiring this plugin by sharing the story of how her team started instrumenting tests at TestCraftCamp 2019.

Thank you to Tony S Yu for backporting the stacklevel argument from Python 3.8 logging.

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

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-instrument-0.2.0.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

pytest_instrument-0.2.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file pytest-instrument-0.2.0.tar.gz.

File metadata

  • Download URL: pytest-instrument-0.2.0.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.22.0 CPython/2.7.15+

File hashes

Hashes for pytest-instrument-0.2.0.tar.gz
Algorithm Hash digest
SHA256 72ff1f465cf0431f396cda73732c5f0dde9eecfc7490c731af4298a010d1505a
MD5 5949c80f110639ff6735aea9cf71e2bf
BLAKE2b-256 8bec4adf6a53c217630a244bbf004c5a26e2be6f5dd281269d1524a37119213b

See more details on using hashes here.

File details

Details for the file pytest_instrument-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_instrument-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.22.0 CPython/2.7.15+

File hashes

Hashes for pytest_instrument-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a321d5f9eb48a8e7a8a153e5120017d447748cd21d1e0cf49c244df7c6ea4e72
MD5 847ddea611c0d953c3040cbf6d20ec85
BLAKE2b-256 a73da2686a5938aed22041d5c7a9f5f9f3a5d7d0d752fe5335cc70664b3c8f4d

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