]> jfr.im git - z_archive/twitter.git/blob - .travis.yml
Add argparse to dependencies for python 2.6
[z_archive/twitter.git] / .travis.yml
1 language: python
2
3 python:
4 - "2.6"
5 - "2.7"
6 - "3.2"
7 - "3.3"
8 - "3.4"
9 - "pypy"
10
11
12 script: nosetests
13
14 after_success:
15 - pip install pep8 pyflakes
16 - pep8 twitter/*.py
17 - pyflakes twitter/*.py
18 - pep8 tests/*.py
19 - pyflakes tests/*.py
20
21 matrix:
22 allow_failures:
23 - python: "pypy"