blob: 1b6a45b8fef40354e425e7abf738c9df0ef9c2e4 [file] [log] [blame]
Alex Gaynor0f66c6d2013-08-07 12:18:02 -07001[tox]
2envlist = py26,py27,pypy,py32,py33,docs,pep8
3
4[testenv]
Alex Gaynor83a0f482013-08-10 15:48:57 -04005deps =
6 pytest-cov
7 pretend
Donald Stufft9e1a48b2013-08-09 00:32:30 -04008commands = py.test --cov=cryptography/ --cov=tests/
Alex Gaynor0f66c6d2013-08-07 12:18:02 -07009
10[testenv:docs]
11deps = sphinx
12basepython = python2.7
13changedir = docs
14commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
15
16[testenv:pep8]
17deps = flake8
Donald Stufft9e1a48b2013-08-09 00:32:30 -040018# E128 continuation line under-indented for visual indent
19commands = flake8 --ignore="E128" cryptography/ tests/ docs/