We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4187575 commit fc3255fCopy full SHA for fc3255f
.github/workflows/tests.yml
@@ -149,7 +149,11 @@ jobs:
149
run: |
150
source ~/.profile
151
conda activate anaconda-client-env
152
- python -m pytest -x --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
+ if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
153
+ python -m pytest -x --skip-slow --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
154
+ else
155
+ python -m pytest -x --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
156
+ fi
157
158
- name: Upload coverage to Codecov
159
uses: codecov/[email protected]
0 commit comments