summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c50362b3e2c0affa277923af1c68dc6bf757625e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: python
python:
  - 2.6
  - 2.7
  - 3.2
  - 3.3
  - 3.4
  - pypy
install:
  - pip install -e .
  - pip list
script:
  - python pep8.py --testsuite testsuite
  - python pep8.py --statistics pep8.py
  - python pep8.py --doctest
  - python setup.py test
matrix:
  allow_failures:
    - python: pypy