]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.yml: updated names and stages for python jobs docs-poe-tasks-im-3b6b50/deployments/8198
authorAleš Mrázek <ales.mrazek@nic.cz>
Thu, 11 Dec 2025 23:55:47 +0000 (00:55 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Sun, 21 Dec 2025 07:19:27 +0000 (08:19 +0100)
.gitlab-ci.yml

index eae5ab7a173f865fc3c1f67de01ca1687beb0677..0826802bbcd29acb69c8b329f4e059365f0c9e9a 100644 (file)
@@ -849,31 +849,33 @@ docs:website:
     - poetry env use python${PYTHON_VERSION}
     - poetry env info
 
-python:examples:
+python:check:files:
   <<: *python
   script:
-    - poetry install --all-extras --only main,dev
-    - poe test-examples
+    - poetry install --all-extras --only main,build,dev,lint
+    - poe check-files
 
-python:migrate:
+python:check:code:
   <<: *python
   script:
-    - poetry install --all-extras --only main,dev
-    - poe test-migrate
+    - poetry install --all-extras --only main,dev,lint
+    - poe check-code
 
-python:check:
+python:test:examples:
   <<: *python
+  stage: test
   script:
-    - poetry install --all-extras --only main,build,dev,lint
-    - poe check-files
+    - poetry install --all-extras --only main,dev
+    - poe test-examples
 
-python:format:
+python:test:migrate:
   <<: *python
+  stage: test
   script:
-    - poetry install --all-extras --only main,dev,lint
-    - poe check-code
+    - poetry install --all-extras --only main,dev
+    - poe test-migrate
 
-python:run:
+python:test:run:
   <<: *python
   stage: test
   parallel:
@@ -891,7 +893,7 @@ python:run:
     # return code 124 is also OK
     - timeout 1m poe run etc/config/${ADD_CONFIG_FILE_NAME} || ( [[ $? -eq 124 ]] )
 
-python:unit:
+python:test:unit:
   <<: *python
   stage: test
   parallel: