seeding expansion

also: replace energy output with energy output density
This commit is contained in:
2026-03-04 13:21:20 -06:00
parent aa6eb72a74
commit e99a14d087
16 changed files with 1078 additions and 117 deletions

View File

@@ -21,9 +21,12 @@ def test_pipeline_run_lifecycle(seeded_repo):
pipeline.run(domain, ["platform", "power_source"], passes=[1, 2, 3], run_id=run_id)
from physcom.seed.transport_example import PLATFORMS, POWER_SOURCES
expected = len(PLATFORMS) * len(POWER_SOURCES)
run = repo.get_pipeline_run(run_id)
assert run["status"] == "completed"
assert run["total_combos"] == 81
assert run["total_combos"] == expected
assert run["started_at"] is not None
assert run["completed_at"] is not None