aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: d15a88325f27cfc44494e22ca949016238cef34c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python

matrix:
  include:
    - python: 2.7
      env: TOXENV=py27
    - python: 3.6
      env: TOXENV=py36
    - python: pypy3
      env: TOXENV=pypy3
    - env: TOXENV=flake8

install:
  - pip install tox

script:
  - tox

notifications:
  email: false