summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: cbeedb757d4ac1e6659d9881962b9efe0ce45ca9 (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
group: travis_latest
language: python
sudo: required

python:
  - "2.7.3" # Ubuntu 12.4LTS (precise) and Debian 7 LTS (wheezy)
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "nightly"

jobs:
  include:
  - python: "3.7"
    dist: xenial  # https://github.com/travis-ci/travis-ci/issues/9069

install:
  - travis_retry bash test/travis_setup.sh

script:
  - python -m coverage run -m unittest discover
  - python -m coverage combine
  - python -m coverage report 2>&1

after_success:
  coveralls