apprise-api/.travis.yml

25 lines
320 B
YAML
Raw Permalink Normal View History

2020-01-04 21:50:00 +01:00
language: python
2022-05-29 22:26:18 +02:00
dist: focal
2020-01-04 21:50:00 +01:00
matrix:
include:
2022-05-29 22:26:18 +02:00
- python: "3.10"
env: TOXENV=py310
2020-01-04 21:50:00 +01:00
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