diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c0e5d4..f71ab4c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -130,7 +130,7 @@ jobs: run: | pip3 install coverage - name: Download all coverage artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: path: ./coverage - name: Combine coverage diff --git a/scripts/test/unit_test.sh b/scripts/test/unit_test.sh index 4b6dec8..e35eaed 100644 --- a/scripts/test/unit_test.sh +++ b/scripts/test/unit_test.sh @@ -1,4 +1,8 @@ pytest \ -vv \ + --cov=anyscale_provider \ + --cov-report=term-missing \ + --cov-report=xml \ + --durations=0 \ --durations=0 \ -m "not (integration or perf)"