From 179124a27a042c3eecd2a7c80cb172d6e50e9853 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Fri, 30 May 2025 10:22:30 +0200 Subject: [PATCH] .gitlab-ci.yml: added python:run job --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c12d0fbde..8cf605bb6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -906,6 +906,15 @@ python:lint: - poetry install --all-extras --only main,dev,lint - poe lint +python:run: + <<: *python + stage: test + script: + - poetry install --all-extras --only main,dev + - poe configure + # return code 124 is also OK + - timeout 3m poe run || ( [[ $? -eq 124 ]] ) + python:unit: <<: *python stage: test -- 2.47.2