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
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
cd src
|
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
|
- name: Upload test results
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: test-results-${{matrix.python-version}}
|
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:
|
steps:
|
||||||
- uses: dorny/test-reporter@v1.7.0
|
- uses: dorny/test-reporter@v1.7.0
|
||||||
with:
|
with:
|
||||||
artifact: /test-results-.*/
|
artifact: /test-results-(.*)/
|
||||||
name: Tests Results
|
name: 'Tests Results - $1'
|
||||||
path: 'junit.xml'
|
path: '*junit.xml'
|
||||||
reporter: java-junit
|
reporter: java-junit
|
Loading…
Add table
Add a link
Reference in a new issue