From b5015e4e7240727ad8185e769149b32cb69579e2 Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 8 Apr 2025 11:30:56 +0200 Subject: [PATCH] built: cleanup gitlab-ci, remove pyqt6 related lines --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1fafb2c2..f57ec9b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,8 +35,7 @@ include: stage: test path: "." pytest_args: "-v,--random-order,tests/unit_tests" - ignore_dep_group: "pyqt6" - pip_args: ".[dev,pyside6]" + pip_args: ".[dev]" # different stages in the pipeline stages: @@ -89,7 +88,7 @@ pylint: needs: [] before_script: - pip install pylint pylint-exit anybadge - - pip install -e .[dev,pyqt6] + - pip install -e .[dev] script: - mkdir ./pylint - pylint ./bec_widgets --output-format=text --output=./pylint/pylint.log | tee ./pylint/pylint.log || pylint-exit $?