From: Aleš Mrázek Date: Thu, 11 Dec 2025 23:55:47 +0000 (+0100) Subject: .gitlab-ci.yml: updated names and stages for python jobs X-Git-Tag: v6.1.0~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12f283c2389e7d465f741e21cc18e0f4b1872d42;p=thirdparty%2Fknot-resolver.git .gitlab-ci.yml: updated names and stages for python jobs --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eae5ab7a1..0826802bb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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: