Skip to content

a-feld/pytest-skippy

Repository files navigation

image

image

image

image

image

pytest skippy

Automatically skip tests that don't need to run!

Most tests that are run on a pull request don't actually exercise the changes that are made. By running all tests (even if those tests are not relevant), the test suite takes longer to complete and more machines may be needed to parallelize tests to cut down on test time.

pytest-skippy detects which tests don't need to run by generating a complete import graph for your tests. If nothing in the import graph has changed (according to GIT), the test is skipped! This approach saves time (getting you test results faster) and money (using less machines for parallel builds)!

Installation

pip install pytest-skippy

Usage

Add the --skippy option to your pytest command.

To specify a target branch, use the --skippy-target-branch option.

Example:

py.test --skippy --skippy-target-branch origin/master