diff --git a/.github/workflows/qt5-tests.yml b/.github/workflows/qt5-tests.yml deleted file mode 100644 index 263c1cb7..00000000 --- a/.github/workflows/qt5-tests.yml +++ /dev/null @@ -1,59 +0,0 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later -# SPDX-FileNotice: Part of the AddonManager. - - -name: Run Qt5 tests - -on: - push: - branches: [dev, main] - pull_request: - branches: [dev, main] - -permissions: - contents: read - -jobs: - test: - name: Qt5 Test - runs-on: ubuntu-22.04 - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y \ - qtbase5-dev \ - qtbase5-dev-tools \ - python3-pyside2.* \ - libegl1 \ - libglib2.0-0 \ - libx11-xcb1 \ - libxrender1 \ - libxkbcommon-x11-0 \ - libxcb-icccm4 \ - libxcb-image0 \ - libxcb-keysyms1 \ - libxcb-randr0 \ - libxcb-render-util0 \ - libxcb-xinerama0 \ - libxcb-xkb1 \ - xvfb - - - name: Install Python dependencies - run: | - python -m pip install --upgrade pip - pip install vermin pyfakefs requests || true - - - name: Run App tests - run: | - python AddonManagerTest/run_app_tests.py - - - name: Run GUI tests - env: - QT_QPA_PLATFORM: xcb - run: | - xvfb-run -s "-screen 0 1920x1080x24" python3 AddonManagerTest/run_gui_tests.py diff --git a/.github/workflows/qt6-tests.yml b/.github/workflows/qt6-tests.yml index 75b5d134..54c17470 100644 --- a/.github/workflows/qt6-tests.yml +++ b/.github/workflows/qt6-tests.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - name: Checkout repo