check whether bcrypt module is available

This commit is contained in:
Peter Bieringer 2025-02-18 06:13:19 +01:00
parent 3d50ae4a70
commit 48a634af9f

View file

@ -41,6 +41,14 @@ class TestBaseAuthRequests(BaseTest):
"""
# test for available bcrypt module
try:
import bcrypt
except ImportError as e:
has_bcrypt = 0
else:
has_bcrypt = 1
def _test_htpasswd(self, htpasswd_encryption: str, htpasswd_content: str,
test_matrix: Union[str, Iterable[Tuple[str, str, bool]]]
= "ascii") -> None: