summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4ad8569b9674b37cc3ef7004240fe3043184ed75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: python
python:
  - "3.3"
  - "3.2"
  - "2.7"
  - "2.6"
  - "2.5"
env:
  - PEP8=0
  - PEP8=1
install:
  - pip install -e . --use-mirrors
script: "if [[ $PEP8 == '1' ]]; then pip install pep8 --use-mirrors; pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc,build,*.egg .; else python setup.py test; fi"