Skip to main content

pytest plugin help to find coupled tests

Project description

pytest-sherlock

Build Status Cov

Pytest plugin which help to find coupled tests.

Sometimes we have coupled tests which depend from ordering

For example:

  • PASSES tests/exmaple/test_all_read.py tests/exmaple/test_b_modify.py tests/exmaple/test_c_delete.py
  • FAILED tests/exmaple/test_c_delete.py tests/exmaple/test_b_modify.py tests/exmaple/test_all_read.py

In this case pretty simple to detect coupled tests, but if we have >=1k tests which called before it will hard

Content:

Install

pip install pytest-sherlock

how to use:

pytest tests/exmaple/test_c_delete.py tests/exmaple/test_b_modify.py tests/exmaple/test_all_read.py --flaky-test="test_read_params" -vv -x

Plugin didn't run all tests, it try to find some possible guilty test and will run first

======================================================================================== test session starts ========================================================================================
collected 3 items                                                                                                                                                                                   
Try to find coupled tests:

tests/exmaple/test_b_modify.py::test_modify_random_param PASSED                                                                                                                               [ 33%]
tests/exmaple/test_all_read.py::test_read_params FAILED                                                                                                                                       [ 66%]
tests/exmaple/test_c_delete.py::test_delete_random_param PASSED                                                                                                                               [100%]

============================================================================================= FAILURES ==============================================================================================

Also you can use pytest -x or --exitfirst

======================================================================================== test session starts ========================================================================================
collected 3 items                                                                                                                                                                                   
Try to find coupled tests:

tests/exmaple/test_b_modify.py::test_modify_random_param PASSED                                                                                                                               [ 33%]
tests/exmaple/test_all_read.py::test_read_params FAILED                                                                                                                                       [ 66%]

============================================================================================= FAILURES ==============================================================================================

TODO

I have a couple ideas, how to improve finder coupled tests:

  • use AST for detect common peace of code (variables, functions, etc...)
  • run not all tests (binary search algorithm)
  • Also need to add tests for it =)

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-sherlock-0.0.1.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

pytest_sherlock-0.0.1-py2-none-any.whl (5.0 kB view hashes)

Uploaded Python 2

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