]> jfr.im git - z_archive/twitter.git/blame - .travis.yml
Add 3.2 as allowed failure. Upgrade 2.6 and 3.3 as non-allowed failuers
[z_archive/twitter.git] / .travis.yml
CommitLineData
7b8c3a26 1language: python
2
3python:
4- "2.6"
5- "2.7"
b3e26d7f 6- "3.2"
7b8c3a26 7- "3.3"
8- "3.4"
9- "pypy"
10
11
12script: nosetests
13
fcf08b18 14after_success:
15 - pip install pep8 pyflakes
16 - pep8 twitter/*.py
17 - pyflakes twitter/*.py
18 - pep8 tests/*.py
19 - pyflakes tests/*.py
20
7b8c3a26 21matrix:
22 allow_failures:
b3e26d7f 23 - python: "3.2"
7b8c3a26 24 - python: "3.4"
25 - python: "pypy"