From: Aleš Mrázek Date: Tue, 8 Oct 2024 18:09:31 +0000 (+0200) Subject: .gitlab-ci.manager.yml: python3.13 unit tests X-Git-Tag: v6.0.9~7^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc3eb365d2374930b3e3b7526572d342cb8ab708;p=thirdparty%2Fknot-resolver.git .gitlab-ci.manager.yml: python3.13 unit tests --- diff --git a/.gitlab-ci.manager.yml b/.gitlab-ci.manager.yml index 727e1bf1b..e04202ecf 100644 --- a/.gitlab-ci.manager.yml +++ b/.gitlab-ci.manager.yml @@ -11,21 +11,21 @@ default: - linux - amd64 -examples:py3.12: +examples:py3.13: stage: check script: - poetry install --only main,dev - poe examples variables: - PYTHON_INTERPRETER: python3.12 + PYTHON_INTERPRETER: python3.13 -lint:py3.12: +lint:py3.13: stage: check script: - poetry install --only main,dev,lint - poe check variables: - PYTHON_INTERPRETER: python3.12 + PYTHON_INTERPRETER: python3.13 .unit: &unit stage: check @@ -67,3 +67,8 @@ unit:py3.12: <<: *unit variables: PYTHON_INTERPRETER: python3.12 + +unit:py3.13: + <<: *unit + variables: + PYTHON_INTERPRETER: python3.13