Skip to content

Commit

Permalink
compressing test results in ci #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Dec 8, 2022
1 parent f8c3495 commit e164e6a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,17 @@ jobs:
cd tests
texttest -b ci -v ci -a complex.libsumo
- name: Compressing test results
if: failure()
run: |
zip -r texttesttmp.zip ~/.texttest/tmp
- name: Uploading test results
if: failure()
uses: actions/upload-artifact@v3
with:
name: texttesttmp-${{ matrix.python }}
path: ~/.texttest/tmp
path: texttesttmp.zip
if-no-files-found: warn

publish-wheels:
Expand Down

0 comments on commit e164e6a

Please sign in to comment.