aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 22:04:21 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 22:04:21 -0700
commit80bb237b06ce5cf5180e4a44874685e3571e813c (patch)
tree3f0a2f33d0ee6230b8a23812f3add9f47f62adc5 /tox.ini
parent4bc451924ce0f98c0300aa13463ea8e995ea8c93 (diff)
parent9e1a48b84cd3525f3469ca4c46a413d27f1aba78 (diff)
downloadcryptography-80bb237b06ce5cf5180e4a44874685e3571e813c.tar.gz
cryptography-80bb237b06ce5cf5180e4a44874685e3571e813c.tar.bz2
cryptography-80bb237b06ce5cf5180e4a44874685e3571e813c.zip
Merge pull request #29 from dstufft/nist-vector-file-utilities
Add a test utility functions to read & process NIST vector files
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 3 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 5d214bd6..81c66758 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,7 @@ envlist = py26,py27,pypy,py32,py33,docs,pep8
[testenv]
deps = pytest-cov
-commands = py.test --cov=cryptography/
+commands = py.test --cov=cryptography/ --cov=tests/
[testenv:docs]
deps = sphinx
@@ -13,4 +13,5 @@ commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . _build/html
[testenv:pep8]
deps = flake8
-commands = flake8 cryptography/ tests/ docs/
+# E128 continuation line under-indented for visual indent
+commands = flake8 --ignore="E128" cryptography/ tests/ docs/