1language: python
2dist: trusty
3sudo: false
4cache: pip
5python: 3.6
6
7env:
8  - TOXENV=py27
9  - TOXENV=py34
10  - TOXENV=py36
11
12before_script:
13  - pip install -U pip wheel tox
14
15script: tox
16
17after_success:
18  - cd tests
19  - coveralls
20  - cd -
21
22branches:
23  only:
24    - master
25