aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-09-08 12:43:02 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-09-08 12:43:02 -0700
commite53677a149b646deb2be1d6ffbd3e27a960b2f8c (patch)
tree0aeea194f1f814967167714eb8849c682a681d06 /tests/conftest.py
parentf0ca2e8bf0eaaba32ea0fe1a608c2a5c6348f5fa (diff)
downloadcryptography-e53677a149b646deb2be1d6ffbd3e27a960b2f8c.tar.gz
cryptography-e53677a149b646deb2be1d6ffbd3e27a960b2f8c.tar.bz2
cryptography-e53677a149b646deb2be1d6ffbd3e27a960b2f8c.zip
fixes
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index af146386..b7981c9d 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -18,7 +18,8 @@ import pytest
from cryptography.hazmat.backends import _available_backends
from cryptography.hazmat.backends.interfaces import (
CMACBackend, CipherBackend, DSABackend, EllipticCurveBackend, HMACBackend,
- HashBackend, PBKDF2HMACBackend, PKCS8SerializationBackend, RSABackend,
+ HashBackend, PBKDF2HMACBackend, PEMSerializationBackend,
+ PKCS8SerializationBackend, RSABackend,
TraditionalOpenSSLSerializationBackend
)
from .utils import check_backend_support, check_for_iface, select_backends
@@ -48,6 +49,7 @@ def pytest_runtest_setup(item):
)
check_for_iface("pkcs8_serialization", PKCS8SerializationBackend, item)
check_for_iface("elliptic", EllipticCurveBackend, item)
+ check_for_iface("pem_serialization", PEMSerializationBackend, item)
check_backend_support(item)