There was an error while loading. Please reload this page.
1 parent 3bc71d4 commit 33d3ebeCopy full SHA for 33d3ebe
2 files changed
.github/workflows/ci.yaml
@@ -110,8 +110,12 @@ jobs:
110
python -m pip install --no-deps .
111
112
- name: Run tests
113
+ run: |
114
+ pytest -v --disable-pytest-warnings --durations=20 --low-performance --cov=gromacs --cov-report=xml --cov-report=term-missing --color=yes ./tests
115
+
116
+ - name: Coverage report
117
run: |
- pytest -v --disable-pytest-warnings --durations=20 --low-performance --cov=gromacs --cov-report=xml --color=yes ./tests
118
+ coverage report --show-missing
119
120
- name: Codecov
121
uses: codecov/codecov-action@v4
ci/conda-envs/test_env.yaml
@@ -13,4 +13,5 @@ dependencies:
13
- codecov
14
- pytest
15
- pytest-cov
16
-- pytest-pep8
+- pytest-pep8
17
+- coverage
0 commit comments