1language: python
2sudo: false
3dist: trusty
4matrix:
5 include:
6  - python: 2.7
7    env: TOXENV=py2
8  - python: 3.6
9    env: TOXENV=py3
10#before_install:
11  # Install tor and chutney if doing functional tests
12  #- if [[ $TEST == 'functional' ]]; then ./test/scripts/install-tor.sh; fi
13  #- if [[ $TEST == 'functional' ]]; then source test/scripts/install-chutney.sh; fi
14install:
15  - pip install tox coveralls
16script:
17  - tox
18after_success:
19  - coveralls
20