10 lines
212 B
YAML
10 lines
212 B
YAML
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- apt-get update -qy
|
|
- apt-get install -y python3-dev python3-pip
|
|
- pip install -r requirements.txt
|
|
- pytest tests --cov --cov-report term --cov-report html |