a2a-source-edit: write tests/test_full_stack_contract.py

This commit is contained in:
a2a-cloud
2026-07-18 08:14:30 +00:00
parent a4dd7a89a3
commit cf1f1be324

View File

@@ -16,6 +16,7 @@ def load_agent_module():
spec = importlib.util.spec_from_file_location("contract_clock_agent", ROOT / "agent.py")
module = importlib.util.module_from_spec(spec)
assert spec.loader is not None
sys.modules[spec.name] = module
spec.loader.exec_module(module)
return module