Skip to content
Snippets Groups Projects
Commit 913e7068 authored by Pierre SMEYERS's avatar Pierre SMEYERS
Browse files

Merge branch '9-poetry-disable-correction' into 'master'

fix: disable poetry usage

Closes #9

See merge request to-be-continuous/python!7
parents f82f46db 17d57cb9
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ variables:
}
function install_requirements() {
if [[ -f "pyproject.toml" ]]; then
if [[ -f "pyproject.toml" ]] && [[ "${PYTHON_POETRY_DISABLED}" != "true" ]]; then
if [[ ! -f "poetry.lock" ]]; then
log_error "Poetry detected but \\e[33;1mpoetry.lock\\e[0m file not found: you shall commit it with your project files"
exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment