1 parent 06e52bf commit ed3350bCopy full SHA for ed3350b
1 file changed
.github/workflows/ci.yaml
@@ -16,7 +16,7 @@ defaults:
16
shell: bash -l {0}
17
18
env:
19
- CONDA_DEPS: "'MDAnalysis' MDAnalysisTests numpy scipy pytest pytest-cov codecov"
+ CONDA_DEPS: "'MDAnalysis' MDAnalysisTests numpy scipy pytest pytest-xdist pytest-cov codecov"
20
21
jobs:
22
tests:
@@ -60,11 +60,12 @@ jobs:
60
61
- name: run_tests
62
run: |
63
- pytest -v --cov=MDRestraintsGenerator --cov-report=xml MDRestraintsGenerator/tests/
+ pytest -n auto -v --cov=MDRestraintsGenerator --cov-report=xml MDRestraintsGenerator/tests/
64
65
- name: codecov
66
uses: codecov/codecov-action@v5
67
with:
68
file: coverage.xml
69
+ token: ${{ secrets.CODECOV_TOKEN }}
70
fail_ci_if_error: True
71
verbose: True
0 commit comments