Skip to content

Commit 80ab06f

Browse files
committed
Advanced pipeline
First try of codecoverage using codecoverage
1 parent b8ec415 commit 80ab06f

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/pipeline.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,11 @@ jobs:
5050
pip install -e ./[testing]
5151
5252
- name: Test
53+
if: always()
5354
run: |
54-
pytest
55+
coverage run -m pytest
56+
57+
- name: Coverage report
58+
if: always()
59+
run: |
60+
coverage report -m

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ debug*
66
*.h5
77
*.egg-info
88
.vscode
9+
.coverage

environment.yml

28 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)