diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc397954..64e96ad0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,9 @@ jobs: run: python manage.py collectstatic --noinput --settings=config.settings.test - name: Run tests - run: pytest --cov=primed -n auto + run: | + pytest --cov=primed -n auto + mv .coverage .coverage-${{ strategy.job-index }} - name: List files for debugging purposes run: ls -lhta @@ -87,7 +89,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: coverage-data-${{ strategy.job-index }} - path: .coverage.* + path: .coverage-${{ strategy.job-index }} coverage: needs: