From 5c6628e794de0db96bae53146653eda47795124c Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Tue, 11 Oct 2022 14:41:12 -0400 Subject: [PATCH] Update poetry version, remove no longer needed environment variables --- .gitlab-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index da6251ff..8e049202 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,15 +16,10 @@ build-openapi-scheme: stage: build image: python:3.10-alpine variables: - SECRET_KEY: not-a-very-secret-key - DJANGO_SETTINGS_MODULE: steering.settings - # steering.settings switches to sqlite if the VIRTUAL_ENV environment - # variable is present. It’s probably a good idea to refactor this to - # something more explicit. OPENAPI_JSON: ./public/api.json before_script: - apk add gcc musl-dev zlib-dev jpeg-dev libmagic - - pip install poetry==1.2.1 + - pip install poetry==1.2.2 - poetry install --without dev,test --no-root script: - mkdir public -- GitLab