Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit 454aeb7

Browse files
committed
fix bad filepath issue in cicd code
1 parent f2a3d94 commit 454aeb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ jobs:
5757
run: |
5858
pytest --cov=src --junitxml=test-results.xml tests/
5959
60-
- name: Upload pytest test results
60+
- name: Upload test results
6161
uses: actions/upload-artifact@v4
6262
with:
6363
name: pytest-results
64-
path: test-results.xml
64+
path: ${{ github.workspace }}/backend/test-results.xml
6565
# Use always() to always run this step to publish test results when there are test failures
6666
if: ${{ always() }}

0 commit comments

Comments
 (0)