1[tox]
2envlist = py{27,34,35,36}, pypy, lint
3
4[testenv]
5deps= -r{toxinidir}/test_requirements.txt
6commands=
7    coverage run -m py.test {toxinidir}/test/
8    coverage report
9
10[testenv:pypy]
11# temporarily disable coverage testing on PyPy due to performance problems
12commands= py.test {toxinidir}/test/
13
14[testenv:lint]
15basepython=python3
16deps = flake8==2.5.4
17commands = flake8 hyper test
18