summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 20935de0e00f284429cea5b09eed7c3d7b9293a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: python

python:
  - "2.7"

env:
  - TOXENV=py27
  - TOXENV=py34
  - TOXENV=pypy
  - TOXENV=pypy3
  - TOXENV=pep8,pyflakes

# https://github.com/travis-ci/travis-ci/issues/4794
matrix:
  include:
    - python: 3.5
      env: TOXENV=py35

# command to install dependencies
install:
    - pip install tox

# command to run tests
script:
    - tox