aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-10-11 21:36:30 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-10-12 09:36:30 +0800
commita87daea52b698a59664d852ecad567a742576265 (patch)
treed18b07e79df0b9bfc95ecfeb96e04a1d1f377e63 /tests/utils.py
parent4cf6e785ca5608cffd8d92ad1e1a5073108a2a20 (diff)
downloadcryptography-a87daea52b698a59664d852ecad567a742576265.tar.gz
cryptography-a87daea52b698a59664d852ecad567a742576265.tar.bz2
cryptography-a87daea52b698a59664d852ecad567a742576265.zip
Debian sid is python3.6 now (#3968)
* Debian sid is python3.6 now * Workaround because apparently measuring coverage correctly isn't a legitimate use case
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 2d3cb6df..74b1513d 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -248,6 +248,9 @@ def load_pkcs1_vectors(vector_data):
attr = None
if private_key_vector is None or public_key_vector is None:
+ # Random garbage to defeat CPython's peephole optimizer so that
+ # coverage records correctly: https://bugs.python.org/issue2506
+ 1 + 1
continue
if line.startswith("# Private key"):