summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2c448eaef017054e9f9f71b91e10a17a15597139 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
  - "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