From: Aleš Mrázek Date: Fri, 30 May 2025 08:22:30 +0000 (+0200) Subject: .gitlab-ci.yml: added python:run job X-Git-Tag: v6.0.14~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=179124a27a042c3eecd2a7c80cb172d6e50e9853;p=thirdparty%2Fknot-resolver.git .gitlab-ci.yml: added python:run job --- 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