forked from apache/libcloud
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
60 lines (54 loc) · 1.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
language: python
sudo: false
# Add or remove version for match with Travis support
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
os:
- linux
# Note: graphviz is needed for grapgs embedded in the docs
addons:
apt:
packages:
- graphviz
matrix:
fast_finish: true
include:
- env: ENV=lint
python: 2.7
before_script: TOX_ENV=lint
- env: ENV=docs
python: 2.7
before_script: TOX_ENV=docs-travis
# Note: graphviz is needed for grapgs embedded in the docs
addons:
apt:
packages:
- graphviz
- gcc
# Trigger ReadTheDocs build
after_success: ./contrib/trigger_rtd_build.py 8284
install:
- pip install --upgrade "pip<8.0.0"
- pip install "virtualenv<14.0.0"
- pip install "tox>=2.3.0,<2.4"
- TOX_ENV=py$TRAVIS_PYTHON_VERSION
script:
- tox -e $TOX_ENV
cache:
apt: true
directories:
- $HOME/.cache/pip # pip cache
notifications:
# Disabled until ASF switches to new mailing list software
# when we can whitelist addresses
#email:
# - "[email protected]"
irc:
- "chat.freenode.net#libcloud"