Try to preserve both the pip and pipenv caches in Travis builds
This commit is contained in:
parent
382a79e6c7
commit
a35a1283da
1 changed files with 5 additions and 2 deletions
|
@ -1,8 +1,11 @@
|
||||||
language: python
|
language: python
|
||||||
cache:
|
cache:
|
||||||
pip: true
|
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.local/share/virtualenvs
|
- $PIP_CACHE_DIR
|
||||||
|
- $PIPENV_CACHE_DIR
|
||||||
|
env:
|
||||||
|
- PIP_CACHE_DIR=$HOME/.cache/pip
|
||||||
|
- PIPENV_CACHE_DIR=$HOME/.cache/pipenv
|
||||||
python:
|
python:
|
||||||
- '3.6'
|
- '3.6'
|
||||||
install:
|
install:
|
||||||
|
|
Loading…
Reference in a new issue