12 lines
243 B
Python
12 lines
243 B
Python
|
|
import importlib
|
||
|
|
|
||
|
|
|
||
|
|
def test_core_modules_are_importable() -> None:
|
||
|
|
module_names = [
|
||
|
|
"engine.devops_agent",
|
||
|
|
"engine.devops_agent.cli",
|
||
|
|
]
|
||
|
|
|
||
|
|
for module_name in module_names:
|
||
|
|
importlib.import_module(module_name)
|