We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7057462 commit fb5b682Copy full SHA for fb5b682
1 file changed
.github/workflows/test.yml
@@ -16,12 +16,17 @@ jobs:
16
with:
17
version: "latest"
18
19
+ - name: Install system dependencies
20
+ run: sudo apt-get install -y --no-install-recommends libegl1
21
+
22
- name: Install test dependencies
23
run: |
24
uv venv
25
uv pip install pytest pytest-cov toml psutil loguru requests PySide6
26
27
- name: Run tests with coverage
28
+ env:
29
+ PYTHONPATH: .
30
run: uv run --no-project pytest --tb=short --cov-report=json:coverage.json
31
32
- name: Extract coverage percentage
0 commit comments