mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
14 lines
492 B
Python
14 lines
492 B
Python
"""Testing hooks package.
|
|
|
|
Package containing classes to customize the behavior of a test fixture
|
|
by allowing special code to be executed before or after each test, and
|
|
before or after each suite.
|
|
"""
|
|
|
|
from .interface import make_hook
|
|
from ...utils import autoloader as _autoloader
|
|
|
|
# We dynamically load all modules in the hooks/ package so that any Hook classes declared
|
|
# within them are automatically registered.
|
|
_autoloader.load_all_modules(name=__name__, path=__path__) # type: ignore
|