9 lines
149 B
YAML
9 lines
149 B
YAML
image: python:3.6
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: normal
|
|
|
|
test:
|
|
script:
|
|
- pip install pipenv
|
|
- pipenv install
|
|
- pipenv run pytest
|