Skip to content

Commit 922d800

Browse files
committed
ci: no xdist on windows for example tests
1 parent eecacde commit 922d800

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,9 @@ jobs:
176176
- name: Run autotests
177177
working-directory: ./autotest
178178
shell: bash -l {0}
179-
run: uv run pytest -v -n auto test_mf6_examples.py
179+
run: |
180+
if $RUNNER_OS == 'Windows'; then
181+
uv run pytest -v test_mf6_examples.py
182+
else
183+
uv run pytest -v -n auto test_mf6_examples.py
184+
fi

0 commit comments

Comments
 (0)