Skip to content

Commit cb92958

Browse files
committed
Fix coverage report
1 parent e2fc56a commit cb92958

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python -m pip install -r requirements_dev.txt
2222
- name: Test with pytest and coverage
2323
run: |
24-
pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing -n auto tests/
24+
pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing --cov-report=xml:coverage.xml -n auto tests/
2525
- name: Upload coverage artifact
2626
if: success()
2727
uses: actions/upload-artifact@v4
@@ -46,7 +46,7 @@ jobs:
4646
python -m pip install -r requirements_dev.txt
4747
- name: Test with pytest and coverage
4848
run: |
49-
pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing -n auto tests/
49+
pytest --rootdir=. --cov=./cert_chain_resolver --cov-report term-missing --cov-report=xml:coverage.xml -n auto tests/
5050
- name: Upload coverage artifact
5151
if: success()
5252
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)