summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 61a18de03100b6689d9beedbe1dec20251dea273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
python:
  - "2.6"
  - "2.7"
env:
  - PYTHONPATH='.'
branches:
  only:
    - master
    - next
install:
  - pip install gunicorn --use-mirrors
  - pip install -r requirements.txt --use-mirrors
  - pip install pep8 --use-mirrors
before_script:
  - pep8 --repeat --show-source --ignore=E125 --statistics --exclude *compat*,resources.py, pecan setup.py
script: python setup.py test