Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/boxed/pytest-test-this

Plugin for pytest to run relevant tests, by naively checking if a test contains a reference to the symbol you supply
https://github.com/boxed/pytest-test-this

Last synced: 2 months ago
JSON representation

Plugin for pytest to run relevant tests, by naively checking if a test contains a reference to the symbol you supply

Awesome Lists containing this project

README

        

===============================
pytest-test-this
===============================

Plugin for ``pytest`` to run relevant tests by naively check if test functions contain a reference to the symbol supplied.

Limitations:
- it only looks for top level test functions, so test classes won't be discovered
- very naive check, so indirect usages of a symbol won't be found

This trade off has been made for speed. This method is extremely fast compared to the other common method which tries to be correct by running the full test suite under coverage and checking if the function was called directly or indirectly.

Installation
------------

pip install pytest-test-this

Usage
-----

pytest --test-this=foo

...where foo is the name of your function, class or variable. You can write multiple symbols comma separated.

There is also a special simplified mode for users of git:

pytest --test-this-git

this will try to automatically guess the symbols to run against based on a `git diff` and run pytest-test-this against those symbols