A plugin that selects only tests with changes in execution path
Project description
A plugin that executes only the tests with changes in execution path
This Pytest plugin was generated with Cookiecutter along with @hackebrot’s Cookiecutter-pytest-plugin template.
Features
TODO
Requirements
TODO
Installation
You can install “pytest-skipper” via pip from PyPI:
$ pip install pytest-skipper
Usage
Capture execution trace
$ py.test –trace
This will run the full test suite and record coverage scopes (= name of executed functions) for each test. The scopes are stored in sqlite database skipper.db. The git repo may not have any uncommitted changes when execution trace is recorded.
Execute only tests with changes in execution path
$ py.test –skipper
This command compares your projects git repo state against traces in scope database and selects the execution trace with least code changes. After this the program calculates all scopes with changes and uses those to select only the tests that have changes in their execution path.
Update execution trace while running few tests
$ py.test –skipper –trace
You can use --trace and --skipper arguments at the same time to update the previous execution trace to the latest version without re-running all the tests. Execution traces are stored after each test case, so it is possible to terminate this command and continue it later.
List tests with changes
$ py.test –dry-run-skipper
Same as --skipper, but instead of running the tests, only outputs them. Useful to see what tests need to be updated after code change.
Similar projects
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-skipper” 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 Distributions
Built Distribution
Hashes for pytest_skipper-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd92e43d442e8551e89b232cbc635280b5d8070ced52b34375e27bec25dae11e |
|
MD5 | c027a7d6a3a1d93f6686d075af07f6a4 |
|
BLAKE2b-256 | b62b958a1fa5c9040d081ce3151d64b3c0b6d2103e323685b9a682fcedf294ba |