From ecff8a48b3d6c9f1d0bd0aac1156eb863b35e992 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Wed, 18 Jun 2025 12:39:23 +0200 Subject: [PATCH] .gitlab-ci.yml: python:run: use CONFIG_FILE_NAME --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6519859b..db9c198e7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -913,11 +913,15 @@ python:lint: python:run: <<: *python stage: test + parallel: + matrix: + - CONFIG_FILE_NAME: + - config.dev.yaml script: - poetry install --all-extras --only main,dev - poe configure # return code 124 is also OK - - timeout 3m poe run || ( [[ $? -eq 124 ]] ) + - timeout 1m poe run || ( [[ $? -eq 124 ]] ) python:unit: <<: *python -- 2.47.3