From: Aleš Mrázek Date: Thu, 10 Oct 2024 13:59:16 +0000 (+0200) Subject: .gitlab-ci.manager.yml: install optional deps X-Git-Tag: v6.0.9~5^2~5 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=153cd8fa743bfbcdafe63943c8daf5964c9c58b4;p=thirdparty%2Fknot-resolver.git .gitlab-ci.manager.yml: install optional deps --- 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"