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