Files
agentic-mobile-control/tests/test_smoke.py
T
2026-07-06 23:15:30 +08:00

22 lines
393 B
Python

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