From 40eb2980980dad07d536e74c5b1e44682add922c Mon Sep 17 00:00:00 2001 From: Simon Bjurek <simbj106@student.liu.se> Date: Mon, 27 Jan 2025 08:45:29 +0100 Subject: [PATCH] updated ci file with pyqt6 tests for python 3.10 and 3.11 --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 873cea6c..aeb235f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,6 +47,12 @@ run-test-3.10-pyqt5: image: python:3.10 extends: ".run-test" +run-test-3.10-pyqt6: + variables: + QT_API: pyqt6 + image: python:3.10 + extends: ".run-test" + # PySide2 does not seem to have support for 3.11, "almost works" though #run-test-3.11-pyside2: # variables: @@ -61,6 +67,12 @@ run-test-3.11-pyqt5: image: python:3.11 extends: ".run-test" +run-test-3.11-pyqt6: + variables: + QT_API: pyqt6 + image: python:3.11 + extends: ".run-test" + run-test-3.12-pyqt5: variables: QT_API: pyqt5 -- GitLab