We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e18a74b commit ed015e0Copy full SHA for ed015e0
1 file changed
.github/workflows/testing.yml
@@ -34,7 +34,13 @@ jobs:
34
shell: pwsh
35
run: uv sync --extra gui
36
37
- - name: Test with pytest
+ - name: Test with pytest, no GUI tests
38
39
run: |
40
- uv run pytest -v -rs tests
+ uv run pytest -v -rs --ignore=tests/test_gui tests
41
+
42
+ - name: Test with pytest, GUI tests only
43
+ shell: pwsh
44
+ if: "${{ matrix.os != 'ubuntu' }}" # these segfault on Ubuntu
45
+ run: |
46
+ uv run pytest -v -rs tests/test_gui
0 commit comments