Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c0b94c6

Browse files
committed
.travis.yml: Allow py33 to fail, add py34, etc.
1 parent cf51592 commit c0b94c6

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: python
22
python:
3-
- "2.6"
4-
- "2.7"
5-
- "3.3"
3+
- 2.6
4+
- 2.7
5+
- 3.3
6+
- 3.4
67
install:
78
- pip install coveralls
89
script:
910
- nosetests --with-coverage
1011
after_success:
1112
- coveralls
13+
matrix:
14+
allow_failures:
15+
- python: 3.3
16+
- python: 3.4
17+
fast_finish: true

0 commit comments

Comments
 (0)