Skip to content

docs: give the fuzzer + mutation test their own 'Who tests the tester… #3

docs: give the fuzzer + mutation test their own 'Who tests the tester…

docs: give the fuzzer + mutation test their own 'Who tests the tester… #3

Workflow file for this run

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