We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316b97b commit e0006e1Copy full SHA for e0006e1
.github/workflows/pytest.yml
@@ -47,18 +47,13 @@ jobs:
47
48
- name: Install dependencies
49
run: |
50
- python -m pip install 'pip==25.0.1'
51
- pip install -e .[dev]
52
-
53
- - name: Install apt packages
54
- run: |
55
- sudo apt-get update
56
- sudo apt-get install -y xvfb
+ pip install .[dev]
57
58
- name: Test with pytest
59
id: pytest
60
continue-on-error: false
61
+ export LIBGL_ALWAYS_SOFTWARE=1
62
export DISPLAY=:99
63
Xvfb :99 -screen 0 1024x768x16 &
64
pytest --cov=ardupilot_methodic_configurator --cov-report=xml:tests/coverage.xml --md=tests/results-${{ matrix.python-version }}.md --junit-xml=tests/results-junit.xml
0 commit comments