pytest-git-selector
is a simple project to automatically select tests that have been affected by code changes. This is mainly useful for reducing the number of tests in frequently run CI/CD jobs on feature branches (e.g. running tests based on differences between the merge base and the feature branch).
The idea is fairly simple:
- Changes are analyzed using a
git diff
command. The arguments togit diff
are supplied by the user - If a test module contains one of the changed files in its import tree, then select that test module
The import tree is created using importlab
which statically analyzes import statements to determine dependencies.
See the git-diff documentation for arguments that can be supplied to git diff
.
The plugin will automatically deselect tests whose descendants in the dependency tree have not changed. The changed are determined via a git diff
command that is called with user supplied argument. User supplied arguments to git diff
must be appear at the end of the pytest
arguments separated from the rest of the pytest
arguments using the --
delimiter e.g.
pytest --collect-only -- --diff-filter=M HEAD~1...
This plugin adds two additional flags to pytest
:
--src-path
- specifies the directory containing the source code for the project.src
and the current working directory are automatically added so this argument should not be required in most cases--extra-deps-file
- specifies a path to a file containing dependencies between files not captured by Python import statements e.g. test input files. Edges should be in the form '(a.py,b.json)' where a.py depends on b.json. Edges separated by a space or newline. NOTE there is NO space after the comma. If edges are specified using relative paths, they interpreted as being relative to the directory containing the project root directory containing the .git folder.
The following examples assume the project contains source code in <project_root>/src/
and tests in <project_root>/test/
. pytest
is run in <project_root>
in all the following examples.
pytest -- main...
pytest -- HEAD~1...
Selecting tests affected by changes between two commits with an extra dependency file extra_deps.txt
specified and source code in custom_src_dir/
pytest --src-path custom_src_dir/ --extra-deps-file extra_deps.txt -- 1b23b4b1...12da93k8
The git-select-tests
command line tool can be used to print out selected test modules. This is mainly useful for projects that do not use pytest
as a test runner e.g. nosetest
. The arguments to the git diff
command are separated by the --
delimiter. See git-select-tests --help
for usage.
The following examples assume the project contains source code in <project_root>/src/
and tests in <project_root>/test/
.
git-select-tests --src-path src/ --test-path test/ -- main...
git-select-tests --src-path src/ --test-path test/ -- HEAD~1...
This idea has been implemented before in this pytest-diff-selector
project. The main differences are:
pytest-git-selector
leverages theimportlab
library as opposed to using a proprietary static analyzerpytest-git-selector
implements apytest
plugin
Currently pytest-diff-selector
does not appear to be working and has not been updated recently which is the reason for this project's existence.