File tree Expand file tree Collapse file tree 2 files changed +4
-28
lines changed Expand file tree Collapse file tree 2 files changed +4
-28
lines changed Original file line number Diff line number Diff line change 92
92
93
93
with :
94
94
python-version : ${{ matrix.python-version }}
95
+ - name : Install Qt
96
+ if : ${{ matrix.python-version == '3.10' }}
97
+ run : |
98
+ sudo apt-get install build-essential libgl1-mesa-dev
95
99
- name : Generate partial Python venv restore key
96
100
id : generate-python-key
97
101
run : >-
Original file line number Diff line number Diff line change 31
31
. venv2\scripts\activate
32
32
echo "import distutils.util # pylint: disable=unused-import" > test.py
33
33
pylint test.py
34
-
35
- additional-dependencies-linux-tests :
36
- name : Regression tests w/ additional dependencies (Linux)
37
- runs-on : ubuntu-latest
38
- timeout-minutes : 5
39
- steps :
40
- - name : Check out code from GitHub
41
-
42
- - name : Set up Python
43
- id : python
44
-
45
- with :
46
- python-version : ${{ env.DEFAULT_PYTHON }}
47
- - name : Install Qt
48
- run : |
49
- sudo apt-get install build-essential libgl1-mesa-dev
50
- - name : Create Python virtual environment
51
- run : |
52
- python -m venv venv
53
- . venv/bin/activate
54
- python -m pip install -U pip setuptools wheel
55
- pip install -U -r requirements_test.txt -r requirements_test_brain.txt
56
- pip install -e .
57
- - name : Run brain_qt tests
58
- # Regression test added in https://github.com/PyCQA/astroid/pull/1505
59
- run : |
60
- . venv/bin/activate
61
- pytest tests/unittest_brain_qt.py
You can’t perform that action at this time.
0 commit comments