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

# 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
  - 3.6
  - 3.7
  - "pypy"

install:
  - pip install pipenv
  - pipenv install --dev --ignore-pipfile

script:
  - pipenv run tox

after_success:
  - pipenv run coveralls