2018-08-11 10:11:09 +08:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.6"
|
2019-08-14 15:35:05 +08:00
|
|
|
|
2019-08-16 00:58:56 +08:00
|
|
|
env:
|
2019-08-14 15:35:05 +08:00
|
|
|
- TRAVIS=1
|
2018-08-11 10:11:09 +08:00
|
|
|
# command to install dependencies
|
|
|
|
install:
|
|
|
|
- pip install --quiet -r requirements.txt
|
2019-01-08 20:20:09 +08:00
|
|
|
- pip install pytest>=3.6
|
|
|
|
- pip install pytest-cov
|
2018-08-11 10:11:09 +08:00
|
|
|
# command to run tests
|
|
|
|
script:
|
2019-06-05 18:21:35 +08:00
|
|
|
- pytest --cov=./ test/
|
2018-08-11 10:11:09 +08:00
|
|
|
|
|
|
|
after_success:
|
2018-08-17 19:28:38 +08:00
|
|
|
- bash <(curl -s https://codecov.io/bash)
|