install whole package dependencies

This commit is contained in:
HgO 2022-08-08 17:54:04 +02:00
parent 6aa5312e49
commit 0bca2f61f3

View file

@ -27,13 +27,14 @@ stages:
before_script: before_script:
- export PATH="${VIRTUAL_ENV}/bin:$PATH" - export PATH="${VIRTUAL_ENV}/bin:$PATH"
requirements: install:
extends: .pip cache template extends: .pip cache template
image: python:3.10-alpine image: python:3.10-alpine
stage: install stage: install
script: script:
- python3 -m venv "${VIRTUAL_ENV}" - python3 -m venv "${VIRTUAL_ENV}"
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install .
cache: cache:
policy: pull-push policy: pull-push
interruptible: true interruptible: true