Alex Gaynor | 0f66c6d | 2013-08-07 12:18:02 -0700 | [diff] [blame] | 1 | [tox] |
2 | envlist = py26,py27,pypy,py32,py33,docs,pep8 | ||||
3 | |||||
4 | [testenv] | ||||
5 | deps = pytest | ||||
6 | commands = py.test | ||||
7 | |||||
8 | [testenv:docs] | ||||
9 | deps = sphinx | ||||
10 | basepython = python2.7 | ||||
11 | changedir = docs | ||||
12 | commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html | ||||
13 | |||||
14 | [testenv:pep8] | ||||
15 | deps = flake8 | ||||
16 | commands = flake8 cryptography/ tests/ docs/ |