mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-13 10:21:14 +01:00
25 lines
320 B
YAML
25 lines
320 B
YAML
language: python
|
|
|
|
dist: focal
|
|
|
|
matrix:
|
|
include:
|
|
- python: "3.10"
|
|
env: TOXENV=py310
|
|
|
|
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
|