forked from bank2ynab/bank2ynab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 841 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: python
python:
- "nightly"
- "3.7-dev" # 3.7 development branch
- "3.6-dev" # 3.6 development branch
- "3.6"
- "3.5-dev" # 3.5 development branch
- "3.5"
- "3.4"
# - "2.7"
# install what's needed to run tests
install:
- pip install flake8
- pip install coverage
- pip install codecov
# command to run tests
script:
- python -m unittest discover -v
- python bank2ynab.py
- flake8 --builtins=unicode
- coverage run bank2ynab.py
after_success:
- codecov
- coverage report
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/23be690947c65bd7a84b
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always