diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 22:04:21 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-08 22:04:21 -0700 |
commit | 80bb237b06ce5cf5180e4a44874685e3571e813c (patch) | |
tree | 3f0a2f33d0ee6230b8a23812f3add9f47f62adc5 /tox.ini | |
parent | 4bc451924ce0f98c0300aa13463ea8e995ea8c93 (diff) | |
parent | 9e1a48b84cd3525f3469ca4c46a413d27f1aba78 (diff) | |
download | cryptography-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.ini | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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/ |