Files
2026-07-13 11:58:32 +08:00

9 lines
178 B
Python

"""All unit tests (lightweight tests)."""
from typing import Any
def assert_all_importable(module: Any) -> None:
for attr in module.__all__:
getattr(module, attr)