8 lines
179 B
YAML
8 lines
179 B
YAML
|
python_test:
|
||
|
image: python:3.8.5
|
||
|
script:
|
||
|
- pip install --upgrade pip
|
||
|
- pip install coverage
|
||
|
- coverage run --source=src -m unittest discover
|
||
|
- coverage report
|