10 lines
215 B
Python
10 lines
215 B
Python
from __future__ import annotations
|
|
|
|
import importlib
|
|
|
|
|
|
def test_imports_new_packages() -> None:
|
|
for package in ("core", "tools", "vision", "runtime", "api", "storage"):
|
|
importlib.import_module(package)
|
|
|