Skip to content

Commit 6f3a6bb

Browse files
fix: Update Python test command to use current directory for coverage reporting
1 parent 553b12d commit 6f3a6bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
9191
echo "MIN_COVERAGE=$MIN_COVERAGE" >> "$GITHUB_OUTPUT"
9292
- name: Run Python Tests
93-
run: make python-test optional_args="--junitxml=coverage-junit.xml --cov=code --cov-report=term --cov-report=xml:coverage.xml --cov-fail-under=${{ steps.coverage-value.outputs.MIN_COVERAGE }} code"
93+
run: make python-test optional_args="--junitxml=coverage-junit.xml --cov=. --cov-report=term --cov-report=xml:coverage.xml --cov-fail-under=${{ steps.coverage-value.outputs.MIN_COVERAGE }} ./code/tests"
9494
- uses: actions/upload-artifact@v4
9595
if: ${{ !cancelled() }}
9696
with:

0 commit comments

Comments
 (0)