16 lines
405 B
Python
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))
|