aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-04-02 03:46:57 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-04-04 19:15:07 +0200
commit97c27c698dc5325aff3887cf13e0e58bcfd1acfe (patch)
tree3ec6458c309f6448f304726ef84355e9f41e216a /tests/conftest.py
parent9ac7c1d9032816e161b64f8e283bffac99b85c2e (diff)
downloadcryptography-97c27c698dc5325aff3887cf13e0e58bcfd1acfe.tar.gz
cryptography-97c27c698dc5325aff3887cf13e0e58bcfd1acfe.tar.bz2
cryptography-97c27c698dc5325aff3887cf13e0e58bcfd1acfe.zip
Add DSABackend
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 8e89af57..1ee2a993 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -17,7 +17,8 @@ import pytest
from cryptography.hazmat.backends import _available_backends
from cryptography.hazmat.backends.interfaces import (
- CipherBackend, HMACBackend, HashBackend, PBKDF2HMACBackend, RSABackend
+ CipherBackend, DSABackend, HMACBackend, HashBackend, PBKDF2HMACBackend,
+ RSABackend
)
from .utils import check_backend_support, check_for_iface, select_backends
@@ -37,6 +38,7 @@ def pytest_runtest_setup(item):
check_for_iface("cipher", CipherBackend, item)
check_for_iface("hash", HashBackend, item)
check_for_iface("pbkdf2hmac", PBKDF2HMACBackend, item)
+ check_for_iface("dsa", DSABackend, item)
check_for_iface("rsa", RSABackend, item)
check_backend_support(item)