2018-02-25 20:37:08 -05:00
|
|
|
image: python:3.6
|
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: normal
|
2018-02-25 21:05:28 -05:00
|
|
|
PIP_CACHE_DIR: $CI_PROJECT_DIR/.pip-cache
|
|
|
|
PIPENV_VENV_IN_PROJECT: true
|
2018-02-25 20:37:08 -05:00
|
|
|
|
2018-02-25 20:58:34 -05:00
|
|
|
cache:
|
|
|
|
paths:
|
2018-02-25 21:05:28 -05:00
|
|
|
- .pip-cache
|
|
|
|
- .venv
|
2018-02-25 20:58:34 -05:00
|
|
|
|
2018-02-25 20:51:14 -05:00
|
|
|
test:
|
2018-02-25 20:14:52 -05:00
|
|
|
script:
|
2018-02-25 20:37:08 -05:00
|
|
|
- pip install pipenv
|
2018-02-25 20:24:22 -05:00
|
|
|
- pipenv install
|
2018-02-25 20:14:52 -05:00
|
|
|
- pipenv run pytest
|