summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 6fbfaa2f094219f980830a522ca03c35192fb9bb (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.4
- 3.5
- pypy

install:
    - travis_retry pip install -q flake8 pytest mock

before_script:
    # stop the build if there are Python syntax errors or undefined names.
    - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi
    # exit-zero treats all errors as warnings.  The GitHub editor is 127 chars wide.
    - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics; fi

script:
  - PYTHONPATH=. py.test