Skip to content

Commit aa326a6

Browse files
tiransimo5
authored andcommitted
Add Travis CI support
The .travis.yml configures Travis CI. We only need Python 2.7 as the rest is handled by different tox environments. In order to enable Travis CI, please read http://docs.travis-ci.com/user/getting-started/ and do step 1) and step 2). Signed-off-by: Christian Heimes <[email protected]> Reviewed-by: Simo Sorce <[email protected]> Closes #11
1 parent 367e97c commit aa326a6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: python
2+
3+
python:
4+
- "2.7"
5+
6+
branches:
7+
only:
8+
- master
9+
10+
install:
11+
- pip install tox
12+
13+
script:
14+
- tox
15+
16+
env:
17+
- TOXENV=py27
18+
- TOXENV=py34
19+
- TOXENV=doc
20+
- TOXENV=sphinx
21+

0 commit comments

Comments
 (0)