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

# Environment changes have to be manually synced with 'tox.ini'.
# See: https://github.com/travis-ci/travis-ci/issues/3024
python:
  - 2.7
  - 3.4
  - 3.5
  - "pypy"

install:
  - pip install tox-travis
  - pip install -r requirements.txt
  - pip install coveralls

script:
  - tox

after_success:
  - coveralls