aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-23 12:07:20 -0700
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-10-24 07:38:59 -0700
commitf93d8244eac195fcc7577ddf22887052c2b686ab (patch)
treeac8cc1c1d4d39d3344652758bf20a1133ac36c82 /tests/utils.py
parent2f2346344ae5561bc9b106cbb452efeebe3cdc45 (diff)
downloadcryptography-f93d8244eac195fcc7577ddf22887052c2b686ab.tar.gz
cryptography-f93d8244eac195fcc7577ddf22887052c2b686ab.tar.bz2
cryptography-f93d8244eac195fcc7577ddf22887052c2b686ab.zip
filter backends during initial generation to elide tests entirely
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/utils.py b/tests/utils.py
index bc5bc1ea..7b462c2d 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -40,8 +40,6 @@ def select_backends(names, backend_list):
if names is None:
return backend_list
split_names = [x.strip() for x in names.split(',')]
- # this must be duplicated and then removed to preserve the metadata
- # pytest associates. Appending backends to a new list doesn't seem to work
selected_backends = []
for backend in backend_list:
if backend.name in split_names: