36 lines
1.1 KiB
Python
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",
|
|
]
|