apprise-api/.travis.yml
2021-09-18 16:46:01 -04:00

27 lines
362 B
YAML

language: python
dist: xenial
matrix:
include:
- python: "3.7"
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
install:
- pip install codecov
- pip install -r dev-requirements.txt
- pip install -r requirements.txt
# run tests
script:
- tox
after_success:
- tox -e coverage-report
- codecov
notifications:
email: false