17 lines
285 B
YAML
17 lines
285 B
YAML
|
# Disable sudo to speed up the build
|
||
|
sudo: false
|
||
|
|
||
|
# Set the build language to Python
|
||
|
language: python
|
||
|
|
||
|
# Set the python version to 3.6
|
||
|
python: 3.6
|
||
|
|
||
|
# Install the codecov pip dependency
|
||
|
install:
|
||
|
- pip install pytest pytest-cov
|
||
|
|
||
|
# Run the unit test
|
||
|
script:
|
||
|
- pytest test.py --cov=./
|