From 153cd8fa743bfbcdafe63943c8daf5964c9c58b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Thu, 10 Oct 2024 15:59:16 +0200 Subject: [PATCH] .gitlab-ci.manager.yml: install optional deps --- .gitlab-ci.manager.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.manager.yml b/.gitlab-ci.manager.yml index e04202ecf..f4f865654 100644 --- a/.gitlab-ci.manager.yml +++ b/.gitlab-ci.manager.yml @@ -14,7 +14,7 @@ default: examples:py3.13: stage: check script: - - poetry install --only main,dev + - poetry install --all-extras --only main,dev - poe examples variables: PYTHON_INTERPRETER: python3.13 @@ -22,7 +22,7 @@ examples:py3.13: lint:py3.13: stage: check script: - - poetry install --only main,dev,lint + - poetry install --all-extras --only main,dev,lint - poe check variables: PYTHON_INTERPRETER: python3.13 @@ -30,7 +30,7 @@ lint:py3.13: .unit: &unit stage: check script: - - poetry install --only main,dev,test + - poetry install --all-extras --only main,dev,test - poe test # the following command makes sure that the source root of the coverage file is at $gitroot - poetry run bash -c "coverage combine .coverage; coverage xml" -- 2.47.2