Commit 2d17275e authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch '11-py-docs-fails-due-to-missing-poetry-lock' into 'master'

Resolve "py-docs fails due to missing poetry.lock"

Closes #11

See merge request to-be-continuous/python!9
parents f759c23f 73d5f2a0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ variables:
  }

  function install_doc_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