mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
Merge branch 'kuba-compat-test' into plugin_tests
This commit is contained in:
commit
fcb4c7ce89
17 changed files with 18 additions and 17 deletions
1
letsencrypt-compatibility-test/MANIFEST.in
Normal file
1
letsencrypt-compatibility-test/MANIFEST.in
Normal file
|
|
@ -0,0 +1 @@
|
|||
include letsencrypt_compatibility_test/testdata/rsa1024_key.pem
|
||||
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
import zope.interface
|
||||
|
||||
from tests.compatibility import errors
|
||||
from tests.compatibility import interfaces
|
||||
from tests.compatibility.configurators.apache import common as apache_common
|
||||
from letsencrypt_compatibility_test import errors
|
||||
from letsencrypt_compatibility_test import interfaces
|
||||
from letsencrypt_compatibility_test.configurators.apache import common as apache_common
|
||||
|
||||
|
||||
# The docker image doesn't actually have the watchdog module, but unless the
|
||||
|
|
@ -9,10 +9,10 @@ import zope.interface
|
|||
from letsencrypt import configuration
|
||||
from letsencrypt import errors as le_errors
|
||||
from letsencrypt_apache import configurator
|
||||
from tests.compatibility import errors
|
||||
from tests.compatibility import interfaces
|
||||
from tests.compatibility import util
|
||||
from tests.compatibility.configurators import common as configurators_common
|
||||
from letsencrypt_compatibility_test import errors
|
||||
from letsencrypt_compatibility_test import interfaces
|
||||
from letsencrypt_compatibility_test import util
|
||||
from letsencrypt_compatibility_test.configurators import common as configurators_common
|
||||
|
||||
|
||||
APACHE_VERSION_REGEX = re.compile(r"Apache/([0-9\.]*)", re.IGNORECASE)
|
||||
|
|
@ -8,8 +8,8 @@ import threading
|
|||
import docker
|
||||
|
||||
from letsencrypt import constants
|
||||
from tests.compatibility import errors
|
||||
from tests.compatibility import util
|
||||
from letsencrypt_compatibility_test import errors
|
||||
from letsencrypt_compatibility_test import util
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
@ -16,9 +16,10 @@ from letsencrypt import achallenges
|
|||
from letsencrypt import errors as le_errors
|
||||
from letsencrypt import validator
|
||||
from letsencrypt.tests import acme_util
|
||||
from tests.compatibility import errors
|
||||
from tests.compatibility import util
|
||||
from tests.compatibility.configurators.apache import apache24
|
||||
|
||||
from letsencrypt_compatibility_test import errors
|
||||
from letsencrypt_compatibility_test import util
|
||||
from letsencrypt_compatibility_test.configurators.apache import apache24
|
||||
|
||||
|
||||
DESCRIPTION = """
|
||||
|
|
@ -11,7 +11,8 @@ import tarfile
|
|||
from acme import jose
|
||||
from acme import test_util
|
||||
from letsencrypt import constants
|
||||
from tests.compatibility import errors
|
||||
|
||||
from letsencrypt_compatibility_test import errors
|
||||
|
||||
|
||||
_KEY_BASE = "rsa1024_key.pem"
|
||||
|
|
@ -12,12 +12,12 @@ install_requires = [
|
|||
]
|
||||
|
||||
setup(
|
||||
name='compatibility-test',
|
||||
name='letsencrypt-compatibility-test',
|
||||
packages=find_packages(),
|
||||
install_requires=install_requires,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'compatibility-test = compatibility.test_driver:main',
|
||||
'letsencrypt-compatibility-test = letsencrypt_compatibility_test.test_driver:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
@ -1 +0,0 @@
|
|||
recursive-include tests/compatibility/testdata/ *
|
||||
|
|
@ -1 +0,0 @@
|
|||
"""Let's Encrypt tests"""
|
||||
Loading…
Reference in a new issue