blob: 81c66758ef90181e8f5c428cda58940a650e6f67 [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
Donald Stufft9e1a48b2013-08-09 00:32:30 -04006commands = py.test --cov=cryptography/ --cov=tests/
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
Donald Stufft9e1a48b2013-08-09 00:32:30 -040016# E128 continuation line under-indented for visual indent
17commands = flake8 --ignore="E128" cryptography/ tests/ docs/