from __future__ import annotations import importlib def test_imports_new_packages() -> None: for package in ( "agents", "api", "cloud", "cloud.sdk", "core", "device", "driver", "perception", "runtime", "semantic", "skills_learning", "storage", "tools", "world", "workflow", ): importlib.import_module(package)