All checks were successful
Deploy Development / deploy (push) Successful in 45s
Test Suite / pytest-backend (push) Successful in 58s
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 18s
Test Suite / playwright-smoke (push) Successful in 12s
Schema 007, regelbasierte Attention/NextAction im Data Layer, CRUD fuer Blocker/Backlog/Meilensteine, Workspace-Widget und Initiative-Detail-Sektionen. 25 Capabilities. Tests fuer Remote-Pytest auf Pi angepasst (conftest Session-Guard). Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
362 B
Python
20 lines
362 B
Python
"""Import all module registrations — side effect registers capabilities."""
|
|
|
|
from . import ( # noqa: F401
|
|
initiative_ops,
|
|
operating_model_ops,
|
|
platform,
|
|
registry_ops,
|
|
tenant_ops,
|
|
workspace_ops,
|
|
)
|
|
|
|
__all__ = [
|
|
"initiative_ops",
|
|
"operating_model_ops",
|
|
"platform",
|
|
"registry_ops",
|
|
"tenant_ops",
|
|
"workspace_ops",
|
|
]
|