Files
mongo/buildscripts/resmokelib/extensions/__init__.py
Joshua Siegel 3f2517616a SERVER-118987 Allow resmoke config to load specific extensions (#48193)
GitOrigin-RevId: e5ce32a480de6bc90c2f20dc5f3901b2ea6b01ae
2026-02-20 18:53:11 +00:00

36 lines
1.1 KiB
Python

"""Utilities for testing extensions locally and in Evergreen."""
from buildscripts.resmokelib.extensions.add_extensions_signature_pub_key_path import (
add_extensions_signature_pub_key_path,
)
from buildscripts.resmokelib.extensions.constants import (
CONF_IN_PATH,
CONF_OUT_DIR,
EVERGREEN_SEARCH_DIRS,
LOCAL_SEARCH_DIRS,
TEST_PUBLIC_KEY_PATH,
)
from buildscripts.resmokelib.extensions.delete_extension_configs import delete_extension_configs
from buildscripts.resmokelib.extensions.find_and_generate_extension_configs import (
find_and_generate_all_extension_configs,
find_and_generate_named_extension_configs,
normalize_load_extensions,
)
from buildscripts.resmokelib.extensions.generate_extension_configs import (
generate_extension_configs,
)
__all__ = [
"find_and_generate_all_extension_configs",
"find_and_generate_named_extension_configs",
"normalize_load_extensions",
"delete_extension_configs",
"generate_extension_configs",
"add_extensions_signature_pub_key_path",
"CONF_IN_PATH",
"CONF_OUT_DIR",
"LOCAL_SEARCH_DIRS",
"EVERGREEN_SEARCH_DIRS",
"TEST_PUBLIC_KEY_PATH",
]