docs: give the fuzzer + mutation test their own 'Who tests the tester… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| name: unit + property-fuzz tests, then mutation test | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: pip | |
| - run: pip install -r requirements.txt | |
| - name: unit + property-fuzz tests (73 tests, offline) | |
| run: python -m pytest tests/ -q | |
| - name: mutation test (4 planted engine bugs must be caught) | |
| run: python mutation_test.py |