From efbc857615dcde7aabaaca5e63d2d3880b6ea353 Mon Sep 17 00:00:00 2001 From: DanEric <dan@syncad.com> Date: Mon, 17 Mar 2025 21:38:31 +0000 Subject: [PATCH] Allow passing args to "poetry install" --- templates/python_projects.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/python_projects.gitlab-ci.yml b/templates/python_projects.gitlab-ci.yml index bef8434..bb30c9c 100644 --- a/templates/python_projects.gitlab-ci.yml +++ b/templates/python_projects.gitlab-ci.yml @@ -37,7 +37,7 @@ variables: extends: .configuration_template before_script: - !reference [.configuration_template, before_script] - - poetry -C "${PYPROJECT_DIR}" install + - poetry -C "${PYPROJECT_DIR}" install ${POETRY_INSTALL_ARGS} - pip list -- GitLab