aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-08-09 00:32:30 -0400
committerDonald Stufft <donald@stufft.io>2013-08-09 01:01:03 -0400
commit9e1a48b84cd3525f3469ca4c46a413d27f1aba78 (patch)
treef61e3a69a1977e732231f09ffc2fec9a6e9ea652 /tox.ini
parent5cd68bf78eb25b90bf666901a6d83b9eaae5a59f (diff)
downloadcryptography-9e1a48b84cd3525f3469ca4c46a413d27f1aba78.tar.gz
cryptography-9e1a48b84cd3525f3469ca4c46a413d27f1aba78.tar.bz2
cryptography-9e1a48b84cd3525f3469ca4c46a413d27f1aba78.zip
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/