File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ${{ matrix.os }}
8
8
strategy :
9
9
matrix :
10
- os : [ubuntu-latest, macos-latest, windows-latest ]
10
+ os : [ubuntu-latest]
11
11
python-version : [3.9]
12
12
13
13
steps :
21
21
python -c "import sys; print(sys.version)"
22
22
python -c "import struct; print(struct.calcsize('P') * 8)"
23
23
- name : Install testing dependencies
24
- run : python -m pip install --upgrade pip setuptools wheel tox tox-gh-actions
24
+ run : |
25
+ sudo apt install libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0
26
+ python -m pip install --upgrade pip setuptools wheel tox tox-gh-actions pytest pytest-qt pytest-xvfb
25
27
- name : Run tox tests
26
28
run : python -m tox
You can’t perform that action at this time.
0 commit comments