• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: python
2cache: pip
3
4# Environment changes have to be manually synced with 'tox.ini'.
5# See: https://github.com/travis-ci/travis-ci/issues/3024
6
7# Python 3.7 is not yet supported by Travis CI.
8# See: https://github.com/travis-ci/travis-ci/issues/9815
9
10python:
11  - "2.7"
12  - "3.4"
13  - "3.5"
14  - "3.6"
15  - "3.7-dev"
16
17# This is blocked by https://github.com/pypa/pipenv/issues/2449,
18# also see https://github.com/pypa/pipenv/projects/7
19#  - "pypy"
20  - "pypy3.5"
21
22install:
23  - pip install pipenv
24  - pipenv install --dev
25
26script:
27  - pipenv run py.test
28
29after_success:
30  - pipenv run coveralls
31