17 lines
315 B
YAML
17 lines
315 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 --upgrade pytest pytest-cov python3_anticaptcha
|
|
|
|
# Run the unit test
|
|
script:
|
|
- pytest test.py --cov=./
|