]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.yml: python:run: use CONFIG_FILE_NAME
authorAleš Mrázek <ales.mrazek@nic.cz>
Wed, 18 Jun 2025 10:39:23 +0000 (12:39 +0200)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Fri, 4 Jul 2025 17:12:45 +0000 (19:12 +0200)
.gitlab-ci.yml

index a6519859b6aa93c94c7cd21c72ebbb1640cf4869..db9c198e76f5f9203181f5996224dcea53118a5a 100644 (file)
@@ -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