Files
mongo/buildscripts/resmokelib/testing/testcases/__init__.py
Juan Gu 2513cc511b SERVER-94076 Remove unused imports via Ruff rule (#27337)
GitOrigin-RevId: 8923cc14f276be93355d763cb88c04bdb4dd9000
2024-10-04 01:43:13 +00:00

11 lines
454 B
Python

"""Package containing subclasses of unittest.TestCase."""
from buildscripts.resmokelib.testing.testcases.interface import make_test_case
from buildscripts.resmokelib.utils import autoloader as _autoloader
__all__ = ["make_test_case"]
# We dynamically load all modules in the testcases/ package so that any TestCase classes declared
# within them are automatically registered.
_autoloader.load_all_modules(name=__name__, path=__path__) # type: ignore