mirror of
https://github.com/certbot/certbot.git
synced 2026-08-04 08:03:44 +02:00
Post-rename subpkg updates.
Fix compat testing imports, console script name, subpkg project name, MANIFEST.
This commit is contained in:
@@ -1 +1 @@
|
|||||||
include compatibility/testdata/rsa1024_key.pem
|
include letsencrypt_compatibility_test/testdata/rsa1024_key.pem
|
||||||
|
|||||||
+3
-3
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
import zope.interface
|
import zope.interface
|
||||||
|
|
||||||
from tests.compatibility import errors
|
from letsencrypt_compatibility_test import errors
|
||||||
from tests.compatibility import interfaces
|
from letsencrypt_compatibility_test import interfaces
|
||||||
from tests.compatibility.configurators.apache import common as apache_common
|
from letsencrypt_compatibility_test.configurators.apache import common as apache_common
|
||||||
|
|
||||||
|
|
||||||
# The docker image doesn't actually have the watchdog module, but unless the
|
# The docker image doesn't actually have the watchdog module, but unless the
|
||||||
|
|||||||
+4
-4
@@ -8,10 +8,10 @@ import zope.interface
|
|||||||
|
|
||||||
from letsencrypt import configuration
|
from letsencrypt import configuration
|
||||||
from letsencrypt_apache import configurator
|
from letsencrypt_apache import configurator
|
||||||
from tests.compatibility import errors
|
from letsencrypt_compatibility_test import errors
|
||||||
from tests.compatibility import interfaces
|
from letsencrypt_compatibility_test import interfaces
|
||||||
from tests.compatibility import util
|
from letsencrypt_compatibility_test import util
|
||||||
from tests.compatibility.configurators import common as configurators_common
|
from letsencrypt_compatibility_test.configurators import common as configurators_common
|
||||||
|
|
||||||
|
|
||||||
APACHE_VERSION_REGEX = re.compile(r"Apache/([0-9\.]*)", re.IGNORECASE)
|
APACHE_VERSION_REGEX = re.compile(r"Apache/([0-9\.]*)", re.IGNORECASE)
|
||||||
|
|||||||
+2
-2
@@ -8,8 +8,8 @@ import threading
|
|||||||
import docker
|
import docker
|
||||||
|
|
||||||
from letsencrypt import constants
|
from letsencrypt import constants
|
||||||
from tests.compatibility import errors
|
from letsencrypt_compatibility_test import errors
|
||||||
from tests.compatibility import util
|
from letsencrypt_compatibility_test import util
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|||||||
@@ -16,9 +16,10 @@ from letsencrypt import achallenges
|
|||||||
from letsencrypt import errors as le_errors
|
from letsencrypt import errors as le_errors
|
||||||
from letsencrypt import validator
|
from letsencrypt import validator
|
||||||
from letsencrypt.tests import acme_util
|
from letsencrypt.tests import acme_util
|
||||||
from tests.compatibility import errors
|
|
||||||
from tests.compatibility import util
|
from letsencrypt_compatibility_test import errors
|
||||||
from tests.compatibility.configurators.apache import apache24
|
from letsencrypt_compatibility_test import util
|
||||||
|
from letsencrypt_compatibility_test.configurators.apache import apache24
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTION = """
|
DESCRIPTION = """
|
||||||
|
|||||||
@@ -11,7 +11,8 @@ import tarfile
|
|||||||
from acme import jose
|
from acme import jose
|
||||||
from acme import test_util
|
from acme import test_util
|
||||||
from letsencrypt import constants
|
from letsencrypt import constants
|
||||||
from tests.compatibility import errors
|
|
||||||
|
from letsencrypt_compatibility_test import errors
|
||||||
|
|
||||||
|
|
||||||
_KEY_BASE = "rsa1024_key.pem"
|
_KEY_BASE = "rsa1024_key.pem"
|
||||||
|
|||||||
@@ -12,12 +12,12 @@ install_requires = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='compatibility-test',
|
name='letsencrypt-compatibility-test',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'compatibility-test = compatibility.test_driver:main',
|
'letsencrypt-compatibility-test = letsencrypt_compatibility_test.test_driver:main',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user