summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6babe1d5863e1509b4686f7dde81bd9d64c40216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
cache: pip
matrix:
  include:
    - python: 2.7
    - python: 3.4
    - python: 3.5
    - python: 3.6
    - python: pypy
    - python: pypy3
    - python: 3.7
      dist: xenial
    - python: 3.8
      dist: xenial
    - python: nightly
      dist: xenial
# TODO: https://bugs.python.org/issue40334
# the PEG parser is currently broken in some cases
  allow_failures:
    - python: nightly
      dist: xenial
install: pip install tox
script: tox -e py