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

23 lines
411 B
Python

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