2018-05-09 07:06:42 -04:00
|
|
|
language: python
|
|
|
|
cache:
|
|
|
|
directories:
|
2018-05-27 21:50:15 -04:00
|
|
|
- $PIP_CACHE_DIR
|
|
|
|
- $PIPENV_CACHE_DIR
|
|
|
|
env:
|
2018-05-27 21:53:46 -04:00
|
|
|
global:
|
|
|
|
- PIP_CACHE_DIR=$HOME/.cache/pip
|
|
|
|
- PIPENV_CACHE_DIR=$HOME/.cache/pipenv
|
2018-05-09 07:06:42 -04:00
|
|
|
python:
|
|
|
|
- '3.6'
|
|
|
|
install:
|
|
|
|
- pip install pipenv
|
2018-05-13 20:38:09 -04:00
|
|
|
- pipenv install --dev
|
2018-05-09 07:06:42 -04:00
|
|
|
script:
|
|
|
|
- pipenv run pytest
|