diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-19 17:11:48 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-19 17:11:48 -0700 |
commit | a4444554aca86bb27ecfbedff81759b904bcd7b9 (patch) | |
tree | 81d1fe93e2b958c11213a96bbfad423d641b02a4 /tests/utils.py | |
parent | 107b74ed7f973f104ede1c30ac6d3e020792afe0 (diff) | |
parent | 2acd77aa20b3a6e8eacf33d6e0cc7df4b438799d (diff) | |
download | cryptography-a4444554aca86bb27ecfbedff81759b904bcd7b9.tar.gz cryptography-a4444554aca86bb27ecfbedff81759b904bcd7b9.tar.bz2 cryptography-a4444554aca86bb27ecfbedff81759b904bcd7b9.zip |
Merge pull request #143 from dstufft/require-100-coverage
Fail tests if our coverage is less than 100%
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index 03b780f8..fa7cc68d 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -90,6 +90,8 @@ def load_cryptrec_vectors(vector_data): "plaintext": pt, "ciphertext": ct }) + else: + raise ValueError("Invalid line in file '{}'".format(line)) return cryptrec_list |