summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c15b4b0df6d9c34323638ed9491fcec9fbfe9c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
group: travis_latest
language: python
sudo: required

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

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