Skip to content

Commit c8a1410

Browse files
Enable Codecov
1 parent cf11d98 commit c8a1410

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/sipa-ci .yml .github/workflows/sipa-ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
run: docker push registry.agdsn.de/agdsn/coreos/sipa/sipa:${GITHUB_REF##*/}
3535
test:
3636
runs-on: ubuntu-latest
37+
permissions:
38+
id-token: write
3739
steps:
3840
- name: Check out sipa and submodules
3941
uses: actions/checkout@v3
@@ -58,8 +60,17 @@ jobs:
5860
run: >
5961
pytest
6062
--junitxml=junit/test-results.xml
63+
--cov --cov-report=xml:cov/cov-results.xml
6164
- name: Publish Test Report
6265
uses: mikepenz/action-junit-report@v3
6366
if: always() # always run even if the previous step fails
6467
with:
6568
report_paths: 'junit/test-*.xml'
69+
annotate_only: true
70+
- name: Upload results to Codecov
71+
uses: codecov/codecov-action@v5
72+
with:
73+
disable_search: true
74+
files: ./cov/cov-results.xml
75+
use_oidc: true
76+
verbose: true

build/requirements/requirements_testing.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ pycodestyle~=2.4.0
55
mypy~=0.960
66
sphinx~=1.8.4
77
pytest~=7.4.3
8+
pytest-cov~=2.10.1
89
time_machine~=2.13.0

0 commit comments

Comments
 (0)