aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e512d3b027df1138a02e5850f96f1155c246fe52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: python
cache: pip
python:
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
  - "nightly"
  - "pypy-5.4"
  - "pypy3"

matrix:
  fast_finish: true
  allow_failures:
    - python: "nightly"

install:
  - pip install -U six && pip install -U tox
  - ./ci_tools/retry.sh python updatezinfo.py

script:
  - tox -e py

after_success:
  - tox -e coverage,codecov

sudo: FALSE