]> jfr.im git - z_archive/twitter.git/blame - .travis.yml
Python 3.5 is out
[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"
cb8fba24 9- "3.5"
7b8c3a26 10- "pypy"
11
31cafa6f 12install:
13 - pip install coveralls
7b8c3a26 14
31cafa6f 15script: nosetests --with-coverage --cover-package=twitter
7b8c3a26 16
fcf08b18 17after_success:
31cafa6f 18 - coveralls
fcf08b18 19 - pip install pep8 pyflakes
20 - pep8 twitter/*.py
21 - pyflakes twitter/*.py
22 - pep8 tests/*.py
23 - pyflakes tests/*.py
24
7b8c3a26 25matrix:
26 allow_failures:
7b8c3a26 27 - python: "pypy"