21 lines
376 B
YAML
21 lines
376 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,7,8)
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8-dev"
|
|
|
|
# Install the codecov pip dependency
|
|
install:
|
|
- pip install --upgrade pytest pytest-cov pytest-asyncio
|
|
- python setup.py install
|
|
|
|
# Run the unit test
|
|
script:
|
|
- pytest tests --cov=./ -v
|