Revert GH changes, don't run snapshot tests on Windows

This commit is contained in:
Michael Panchenko
2025-06-04 21:23:21 +02:00
parent 08e0711ee7
commit 7445bbcc42
3 changed files with 11 additions and 2 deletions
+7 -1
View File
@@ -55,5 +55,11 @@ jobs:
run: uv pip install -e ".[dev]"
- name: Test with pytest
shell: bash
# Currently, java and rust seem to cause problems in CI, and snapshot tests seem to cause problems on Windows
# probably due to the way the language servers are started and stopped
run: |
uv run pytest
if [[ "$RUNNER_OS" == "Windows" ]]; then
uv run pytest -m "not java and not rust and not snapshot"
else
uv run pytest -m "not java and not rust"
fi