api/run/initialization/seed_test_environment.py
kcar e66c8ec291
Some checks failed
api-ci-deploy / test-build-deploy (push) Has been cancelled
t4: consolidate seed scripts, remove demo modes, standardize passwords
2026-05-29 19:51:32 +01:00

16 lines
405 B
Python

"""Compatibility wrapper for the canonical seed environment test mode."""
from typing import Any, Dict
from run.initialization.seed_environment import seed
def seed_test_environment() -> Dict[str, Any]:
"""Seed the lightweight 9-user test environment."""
return seed(test=True)
if __name__ == "__main__":
import json
print(json.dumps(seed_test_environment(), indent=2, default=str))