1language: python
2python:
3    - "2.7"
4    - "3.4"
5install:
6    - pip install -r requirements/develop.txt
7    - pip install -r requirements/travis.txt
8script:
9    - tox
10    - tox -e docs
11after_success:
12    - coveralls
13