• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1sudo: false
2language: python
3cache: pip
4python:
5  - "2.7"
6  - "3.3"
7  - "3.4"
8  - "3.5"
9  - "3.6"
10  - "nightly"
11  - "pypy-5.4"
12  - "pypy3"
13env:
14  TOXENV=py
15
16matrix:
17  fast_finish: true
18  include:
19    - python: 3.6
20      env: TOXENV=docs
21  allow_failures:
22    - python: "nightly"
23
24install:
25  - pip install -U six && pip install -U tox
26  - ./ci_tools/retry.sh python updatezinfo.py
27
28script:
29  - tox
30
31after_success:
32  - if [[ $TOXENV == "py" ]]; then tox -e coverage,codecov; fi
33
34