8000 GitHub - 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
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

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

License

Notifications You must be signed in to change notification settings

boxed/pytest-test-this

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0