summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c9de6d268da0ddc6bb044df5cf93f159cde15cc3 (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 py.test tox

after_success:
  - pipenv run coveralls