]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.manager.yml: install optional deps
authorAleš Mrázek <ales.mrazek@nic.cz>
Thu, 10 Oct 2024 13:59:16 +0000 (15:59 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Thu, 17 Oct 2024 12:39:47 +0000 (14:39 +0200)
.gitlab-ci.manager.yml

index e04202ecfe27745f980f42bc75347793e9ba2755..f4f8656540f7769302d670fa153eb6728423d24a 100644 (file)
@@ -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"