File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,13 @@ jobs:
2222 - name : Test with pytest and coverage
2323 run : |
2424 pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing -n auto tests/
25+ mv .coverage coverage-db
2526 - name : Upload coverage artifact
2627 if : success()
2728 uses : actions/upload-artifact@v4
2829 with :
2930 name : coverage-2.7
30- path : . coverage
31+ path : coverage-db
3132
3233 Test :
3334 runs-on : ubuntu-latest
@@ -47,12 +48,13 @@ jobs:
4748 - name : Test with pytest and coverage
4849 run : |
4950 pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing -n auto tests/
51+ mv .coverage coverage-db
5052 - name : Upload coverage artifact
5153 if : success()
5254 uses : actions/upload-artifact@v4
5355 with :
5456 name : coverage-${{ matrix.python-version }}
55- path : . coverage
57+ path : coverage-db
5658
5759 combine-coverage :
5860 runs-on : ubuntu-latest
7577 - name : Combine coverage reports
7678 run : |
7779 set -x
78- coverage combine coverage-*/. coverage
80+ coverage combine coverage-*/coverage-db
7981 coverage report
8082 coverage xml -o ./coverage.xml
8183
You can’t perform that action at this time.
0 commit comments