forked from 00dani/lemoncurry
Attempt to cache the packages installed by pip and pipenv to dramatically speed up the pipeline
This commit is contained in:
parent
6ceb800723
commit
58d8ca2a25
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@ image: python:3.6
|
||||||
variables:
|
variables:
|
||||||
GIT_SUBMODULE_STRATEGY: normal
|
GIT_SUBMODULE_STRATEGY: normal
|
||||||
|
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- ~/.cache/pip
|
||||||
|
- ~/.local/share/virtualenvs
|
||||||
|
|
||||||
test:
|
test:
|
||||||
script:
|
script:
|
||||||
- pip install pipenv
|
- pip install pipenv
|
||||||
|
|
Loading…
Reference in a new issue