install whole package dependencies
This commit is contained in:
parent
6aa5312e49
commit
0bca2f61f3
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue