aboutsummaryrefslogtreecommitdiff
blob: 13edf9955c767e9406abdebaeafce75926311637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
python:
  - 2.7
  - 3.3
  - 3.4
  - 3.5
matrix:
  fast_finish: true
  allow_failures:
    - python: nightly
sudo: false
cache:
  directories:
    - $HOME/.cache/pip
install: pip install tox coveralls codecov
script: tox -e travis
after_success:
  # upload coverage data
  - pushd .tox/travis/lib/python*/site-packages
  - coveralls
  - codecov
  - popd