From dc58dcebfbf88ac7f9c52326e6832394f21077ff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Wed, 18 Jun 2025 16:14:54 +0200 Subject: [PATCH] .gitlab-ci.yml: python:run: added second configuration --- .gitlab-ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db9c198e7..a28d9cfa8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -915,13 +915,18 @@ python:run: stage: test parallel: matrix: - - CONFIG_FILE_NAME: - - config.dev.yaml - script: + # additional configuration file + - ADD_CONFIG_FILE_NAME: + - config.test-defer.yaml + - config.test-forward.yaml + - config.test-local-data.yaml + - config.test-rate-limiting.yaml + script: + - touch etc/config/blocklist.rpz - poetry install --all-extras --only main,dev - poe configure # return code 124 is also OK - - timeout 1m poe run || ( [[ $? -eq 124 ]] ) + - timeout 1m poe run etc/config/${ADD_CONFIG_FILE_NAME} || ( [[ $? -eq 124 ]] ) python:unit: <<: *python -- 2.47.3