diff --git a/.gitea/workflows/run_tests.yml b/.gitea/workflows/run_tests.yml index dd0a604..8079b55 100644 --- a/.gitea/workflows/run_tests.yml +++ b/.gitea/workflows/run_tests.yml @@ -30,4 +30,10 @@ jobs: with: name: pytest-results path: pytest-results.xml - retention-days: 5 \ No newline at end of file + retention-days: 5 + + - uses: actions/upload-artifact@v4 # upload test results + if: ${{ !cancelled() }} # run this step even if previous step failed + with: + name: pytest-results + path: pytest-results.xml \ No newline at end of file