From d3264d231c1865d2529cc40b23e520efd913eee6 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Tue, 1 Jul 2025 16:09:08 -0400 Subject: [PATCH] speed up mutmut --- .github/workflows/python-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 1231aa3..118d32c 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -81,9 +81,9 @@ jobs: pytest ${STRESS_ARGS} --cov=src --cov-report=xml --cov-report=term-missing \ --cov-fail-under=20 src/tests - name: Run mutation tests - if: github.event_name == 'push' + if: github.event_name == 'push' && runner.os == 'Linux' run: | - python -m mutmut run --paths-to-mutate src --tests-dir src/tests --runner "python -m pytest -q" + python -m mutmut run --paths-to-mutate src --tests-dir src/tests --runner "python -m pytest -q" --use-coverage --no-progress python -m mutmut results - name: Upload coverage report uses: actions/upload-artifact@v4