make certbot tests internal (#9627)

This is the Certbot version of https://github.com/certbot/certbot/pull/9625.
This commit is contained in:
Brad Warren 2023-03-28 14:44:55 -07:00 committed by GitHub
parent 6832521272
commit 16cc1a74be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
47 changed files with 2 additions and 2 deletions

View file

@ -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__

View file

@ -0,0 +1 @@
"""certbot tests"""

View file

@ -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):