mirror of
https://github.com/caronc/apprise.git
synced 2024-11-08 17:24:00 +01:00
16 lines
227 B
YAML
16 lines
227 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
|
|
install:
|
|
- pip install .
|
|
- pip install coveralls
|
|
- pip install -r requirements.txt
|
|
|
|
after_success:
|
|
- coveralls
|
|
|
|
# run tests
|
|
script: nosetests --with-coverage --cover-package=apprise
|
|
|