mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-06-08 19:30:01 +02:00
Improve report
This commit is contained in:
parent
7d4f37bb1f
commit
40a4d583f2
2 changed files with 5 additions and 5 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -49,10 +49,10 @@ jobs:
|
|||
- name: Test
|
||||
run: |
|
||||
cd src
|
||||
python3 -m pytest --junitxml=../junit.xml -o junit_family=legacy
|
||||
python3 -m pytest --junitxml=../${{matrix.python-version}}-junit.xml -o junit_family=legacy
|
||||
- name: Upload test results
|
||||
uses: actions/upload-artifact@v3
|
||||
if: success() || failure()
|
||||
with:
|
||||
name: test-results-${{matrix.python-version}}
|
||||
path: junit.xml
|
||||
path: ${{matrix.python-version}}-junit.xml
|
||||
|
|
6
.github/workflows/test_report.yml
vendored
6
.github/workflows/test_report.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
steps:
|
||||
- uses: dorny/test-reporter@v1.7.0
|
||||
with:
|
||||
artifact: /test-results-.*/
|
||||
name: Tests Results
|
||||
path: 'junit.xml'
|
||||
artifact: /test-results-(.*)/
|
||||
name: 'Tests Results - $1'
|
||||
path: '*junit.xml'
|
||||
reporter: java-junit
|
Loading…
Add table
Add a link
Reference in a new issue