Skip to content

Commit 689a325

Browse files
Install Qt on 3.10 Linux runner (#1533)
1 parent 8fda6c6 commit 689a325

File tree

2 files changed

+4
-28
lines changed

2 files changed

+4
-28
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ jobs:
9292
uses: actions/[email protected]
9393
with:
9494
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
9599
- name: Generate partial Python venv restore key
96100
id: generate-python-key
97101
run: >-

.github/workflows/release-tests.yml

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -31,31 +31,3 @@ jobs:
3131
. venv2\scripts\activate
3232
echo "import distutils.util # pylint: disable=unused-import" > test.py
3333
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-
uses: actions/[email protected]
42-
- name: Set up Python
43-
id: python
44-
uses: actions/[email protected]
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

0 commit comments

Comments
 (0)