From bfd83c818df5888bee835e3569eeafface44451f Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Tue, 1 Jul 2025 15:55:04 -0400 Subject: [PATCH] Fix mutmut usage in CI --- .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 717b416..1231aa3 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -83,8 +83,8 @@ jobs: - name: Run mutation tests if: github.event_name == 'push' run: | - mutmut run --paths-to-mutate src --tests-dir src/tests --runner "python -m pytest -q" - mutmut results + python -m mutmut run --paths-to-mutate src --tests-dir src/tests --runner "python -m pytest -q" + python -m mutmut results - name: Upload coverage report uses: actions/upload-artifact@v4 with: