summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0e17587ea8db889d1cd9b4ea6f99aaf370578940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: python
python:
  - 2.6
  - 2.7
  - 3.2
  - 3.3
  - 3.4
  - nightly
  - pypy
  - pypy3
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
    - python: pypy3

notifications:
  email:
    - IanLee1521@gmail.com