-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
46 lines (41 loc) · 1.03 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
language: python
sudo: false
cache:
directories:
- $HOME/.pip-cache/
matrix:
include:
- python: "2.7"
env: TOXENV=py27 PIP_DOWNLOAD_CACHE=$HOME/.pip-cache
- python: "3.3"
env: TOXENV=py33 PIP_DOWNLOAD_CACHE=$HOME/.pip-cache
- python: "3.4"
env: TOXENV=py34 PIP_DOWNLOAD_CACHE=$HOME/.pip-cache
- python: "3.5"
env: TOXENV=py35 PIP_DOWNLOAD_CACHE=$HOME/.pip-cache
- python: "2.7"
env: TOXENV=docs PIP_DOWNLOAD_CACHE=$HOME/.pip-cache
install:
- virtualenv --version
- git config --global user.email "[email protected]"
- git config --global user.name "travisci"
- pip install tox
- pip install codecov
- pip freeze
- virtualenv --version
script:
- tox -r
after_success:
- codecov
notifications:
email:
on_success: always
on_failure: always
pushover:
users:
- secure: Your_encrypted_Pushover_User_Key_Here_(repository_specific)
api_key:
secure: Your_encrypted_Pushover_api/application_key_here_(repository_specific)
branches:
except:
- "/^noci-.*$/"