mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
make certbot tests internal (#9627)
This is the Certbot version of https://github.com/certbot/certbot/pull/9625.
This commit is contained in:
parent
6832521272
commit
16cc1a74be
47 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,6 @@ include LICENSE.txt
|
|||
recursive-include docs *
|
||||
recursive-include examples *
|
||||
recursive-include certbot/tests/testdata *
|
||||
recursive-include tests *.py
|
||||
include certbot/ssl-dhparams.pem
|
||||
include certbot/py.typed
|
||||
global-exclude __pycache__
|
||||
|
|
|
|||
1
certbot/certbot/_internal/tests/__init__.py
Normal file
1
certbot/certbot/_internal/tests/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
|||
"""certbot tests"""
|
||||
|
|
@ -14,11 +14,11 @@ import pytest
|
|||
from certbot import configuration
|
||||
from certbot import errors
|
||||
from certbot._internal.storage import ALL_FOUR
|
||||
from certbot._internal.tests import storage_test
|
||||
from certbot.compat import filesystem
|
||||
from certbot.compat import os
|
||||
from certbot.display import util as display_util
|
||||
from certbot.tests import util as test_util
|
||||
import storage_test
|
||||
|
||||
|
||||
class BaseCertManagerTest(test_util.ConfigTestCase):
|
||||
Loading…
Reference in a new issue