1sudo: false
2language: python
3cache: pip
4before_cache:
5  - rm -f $HOME/.cache/pip/log/debug.log
6python:
7  - "2.6"
8  - "2.7"
9  - "3.3"
10  - "3.4"
11  - "3.5"
12  - "3.6"
13  - "pypy"
14install:
15  - pip install -U tox virtualenv coverage python-coveralls
16script:
17  - tox -e coverage
18  - tox -e speed
19after_success:
20  - coveralls
21