Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,11 @@ jobs:
run: |
source ~/.profile
conda activate anaconda-client-env
python -m pytest -x --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
python -m pytest -x --skip-slow --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
else
python -m pytest -x --cov=tskit --cov-report=xml --cov-branch -n2 --durations=20 tests
fi

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.4.0
Expand Down
Loading