Configures mutmut for Python mutation testing - `pip install mutmut`, runs via `mutmut run`, browses results via `mutmut browse` or `mutmut results`, applies surviving mutants to disk via `mutmut apply {id}`, suppresses with `# pragma: no mutate` annotations. Configures via `setup.cfg` / `pyproject.toml` with `source_paths` + per-test selection. Use for Python codebases needing mutation-quality verification of pytest / unittest suites.
75
94%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Per mutmut-docs:
"Mutmut is a mutation testing system for Python, with a strong focus on ease of use." (mutmut-docs)
Key features per mutmut-docs:
pip install mutmut and confirm the pytest / unittest suite is green before mutating.setup.cfg or pyproject.toml (source_paths + test selection) so only project source is mutated.mutmut run - the first run is slow; state is cached so later runs are incremental.mutmut results; open survivors interactively with mutmut browse.mutmut apply <id>, re-run that test, then revert.# pragma: no mutate for genuinely unreachable lines only.mutmut results as an artifact.Per mutmut-docs:
pip install mutmut
mutmut runmutmut run "automatically detects test folders ('tests' or
'test') and locates source code" (mutmut-docs).
The first run is slow (full suite per mutant); subsequent runs use the cached state.
Per mutmut-docs, settings go in setup.cfg or
pyproject.toml:
[mutmut]
source_paths=src/
pytest_add_cli_args_test_selection=tests/Or in pyproject.toml:
[tool.mutmut]
source_paths = ["src/"]
pytest_add_cli_args_test_selection = "tests/"Common config:
| Setting | Use |
|---|---|
source_paths | Which files to mutate. |
pytest_add_cli_args_test_selection | Which tests to run per mutant. |
runner | pytest (default) or python -m unittest. |
tests_dir | Override auto-detected test directory. |
do_not_mutate | Regex of files / lines to skip. |
Per mutmut-docs, "Results are explored via mutmut browse,
where mutants can be retested or written to disk using mutmut apply <mutant>."
mutmut browse # interactive TUI
mutmut results # summary table
mutmut show <id> # show specific mutant diffOutput:
Total: 142
Killed: 119 (83.8%)
Survived: 23 (16.2%)
Timeout: 0
Suspicious: 0Per mutmut-docs, common mutations include:
"Integer literals are changed by adding 1. So 0 becomes 1, 5 becomes 6, etc."
<becomes<=
breakconverts tocontinueand vice versa
Other mutators: arithmetic (+ → -), comparison flipping,
constant replacement, statement removal.
Per mutmut-docs:
Use code comments to skip specific areas:
# pragma: no mutate(single line)# pragma: no mutate block(indentation blocks)# pragma: no mutate start/end(arbitrary ranges)
def divide(a, b):
if b == 0: # pragma: no mutate
raise ZeroDivisionError("intentional unreachable")
return a / bUse sparingly - each pragma is a confession that a line isn't mutation-tested. Reviewable in PRs.
Once a surviving mutant is identified, write a test that catches it. To verify the test catches this specific mutation:
mutmut apply <mutant-id> # writes the mutant to disk
pytest tests/affected_test.py # the new test should fail
git checkout src/ # revert the mutantThis proves the test catches the specific bug class.
- name: Mutation testing
if: github.event_name == 'schedule' # weekly
run: |
pip install -e '.[dev]'
pip install mutmut
mutmut run --max-children 4
- name: Surface results
if: always()
run: mutmut results > mutation-summary.txt
- uses: actions/upload-artifact@v4
if: always()
with:
name: mutation-results
path: mutation-summary.txtFor PRs, mutmut doesn't have native incremental mode; use
source_paths to scope to changed files via a wrapper script:
CHANGED=$(git diff --name-only origin/main...HEAD | grep '^src/')
mutmut run --paths-to-mutate "$CHANGED"A team wants to verify the pytest suite for src/discounts.py before a release.
setup.cfg:
[mutmut]
source_paths=src/discounts.py
pytest_add_cli_args_test_selection=tests/test_discounts.pymutmut run, then mutmut results:
Total: 142
Killed: 119 (83.8%)
Survived: 23 (16.2%)mutmut browse shows a survivor: the boundary if total > 100: mutated to if total >= 100: - the suite never exercises total == 100.total == 100, then confirm it catches the mutant:
mutmut apply <id> # id from the browse listing
pytest tests/test_discounts.py # now fails on the mutated line
git checkout src/ # revert the mutantmutmut run shows the mutant killed and the score up by one mutant.Anti-patterns (pragma escape hatches, full-mutation-per-PR, third-party source_paths, unrealistic gates) and mutmut's limitations (slow runs, no native PR diff scoping, equivalent mutants) are catalogued in references/mutmut-pitfalls.md.
setup.cfg / pyproject.toml, mutator examples (integer
literals, comparison flipping, break/continue).stryker-mutation,
stryker-net-mutation,
pitest-mutation,
mull-mutation - per-language
siblings.