diff --git a/.github/workflows/test_fast.yml b/.github/workflows/test_fast.yml index 4d62c0016..aca644a52 100644 --- a/.github/workflows/test_fast.yml +++ b/.github/workflows/test_fast.yml @@ -34,6 +34,9 @@ jobs: run: | pip install hatch pip install coverage-badge + - name: Remove existing coverage.svg if it exists + run: | + if [ -f coverage.svg ]; then rm coverage.svg; fi - name: Run fast tests and generate coverage badge run: | hatch -v run test -m "not slow"