2019-02-28 00:55:04 +00:00
|
|
|
# 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:
|
2019-08-21 01:47:17 +00:00
|
|
|
- pip install --upgrade pytest pytest-cov pytest-asyncio python3_anticaptcha
|
2019-02-28 00:55:04 +00:00
|
|
|
|
|
|
|
# Run the unit test
|
|
|
|
script:
|
|
|
|
- pytest test.py --cov=./
|