Skip to content

Commit ff3ba84

Browse files
authored
ci: no xdist on windows for example tests (#68)
Until devtools models module implements a file lock
1 parent eecacde commit ff3ba84

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)