This commit is contained in:
Felix Fontein
2025-10-10 21:20:24 +02:00
parent 3ce86fbf97
commit 0f8a09e70e
78 changed files with 132 additions and 41 deletions

View File

@@ -12,6 +12,8 @@ from unittest.mock import (
)
import pytest
from freezegun import freeze_time
from ansible_collections.community.crypto.plugins.module_utils._acme.backend_cryptography import (
HAS_CURRENT_CRYPTOGRAPHY,
CryptographyBackend,
@@ -23,7 +25,6 @@ from ansible_collections.community.crypto.plugins.module_utils._time import (
UTC,
ensure_utc_timezone,
)
from freezegun import freeze_time
from ..test__time import TIMEZONES
from .backend_data import (

View File

@@ -12,6 +12,8 @@ from unittest.mock import (
)
import pytest
from freezegun import freeze_time
from ansible_collections.community.crypto.plugins.module_utils._acme.backend_openssl_cli import (
OpenSSLCLIBackend,
)
@@ -19,7 +21,6 @@ from ansible_collections.community.crypto.plugins.module_utils._time import (
UTC,
ensure_utc_timezone,
)
from freezegun import freeze_time
from .backend_data import (
TEST_CERT,

View File

@@ -10,6 +10,7 @@ from unittest.mock import (
)
import pytest
from ansible_collections.community.crypto.plugins.module_utils._acme.challenges import (
Authorization,
Challenge,

View File

@@ -10,6 +10,7 @@ from unittest.mock import (
)
import pytest
from ansible_collections.community.crypto.plugins.module_utils._acme.errors import (
ACMEProtocolException,
format_error_problem,

View File

@@ -9,6 +9,7 @@ from unittest.mock import (
)
import pytest
from ansible_collections.community.crypto.plugins.module_utils._acme.errors import (
ACMEProtocolException,
)

View File

@@ -9,6 +9,7 @@ import pathlib
import typing as t
import pytest
from ansible_collections.community.crypto.plugins.module_utils._acme.backends import (
CertificateInformation,
CryptoBackend,