13 lines
200 B
YAML
13 lines
200 B
YAML
image: "python:3.7"
|
|
|
|
before_script:
|
|
- python --version
|
|
- pip install -r requirements.txt
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- pytest tests --cov --cov-report term --cov-report html |