blob: 5d214bd6f2e76288ebca1ac2df10baea8dcc07b7 [file] [log] [blame]
Alex Gaynor0f66c6d2013-08-07 12:18:02 -07001[tox]
2envlist = py26,py27,pypy,py32,py33,docs,pep8
3
4[testenv]
Alex Gaynor9d005882013-08-07 13:21:42 -07005deps = pytest-cov
6commands = py.test --cov=cryptography/
Alex Gaynor0f66c6d2013-08-07 12:18:02 -07007
8[testenv:docs]
9deps = sphinx
10basepython = python2.7
11changedir = docs
12commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
13
14[testenv:pep8]
15deps = flake8
16commands = flake8 cryptography/ tests/ docs/