mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
check whether bcrypt module is available
This commit is contained in:
parent
3d50ae4a70
commit
48a634af9f
1 changed files with 8 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue