Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 612 Bytes

File metadata and controls

37 lines (23 loc) · 612 Bytes

Python sandpit

Just me poking about with some katas and things.

Setup

poetry install

Run tests

poetry run pytest

Metrics

Mutation testing

Using mutmut as a tool to help identify gaps in our unit test coverage.

Every mutation that survives is a line of code that we can change without it being picked up by our unit tests.

To run the mutation tests:

poetry run mutmut run

The to review the mutants that survived:

poetry run mutmut browse