7 lines
115 B
YAML
7 lines
115 B
YAML
image: python:3.6
|
|
before_script:
|
|
- pip install pipenv
|
|
- pipenv install
|
|
test:
|
|
script:
|
|
- pipenv run pytest
|