Files
2026-07-06 23:44:18 +08:00

25 lines
449 B
Python

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)