summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2113aec8be3ce9712d3450d3b05e5ab522a31718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
cache: pip
matrix:
  include:
    - python: 2.7
    - python: 3.4
    - python: 3.5
    - python: 3.6
    - python: pypy
    - python: pypy-5.3
    - python: pypy3
    - python: 3.7
      dist: xenial
    - python: nightly
      dist: xenial
install:
  - pip install --upgrade .
  - pip list
script:
  - python setup.py test -q
  - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then pip install flake8==2.1.0 pep8==1.5.6 && flake8 --version && flake8 pyflakes setup.py; fi