Release v0.1.0
All checks were successful
CI / Lint (push) Successful in 4s
CI / Type Check (push) Successful in 18s
CI / Test (push) Successful in 36s
CI / Release (push) Successful in 6s

This commit is contained in:
2025-12-04 13:18:17 +00:00
parent 7fbbf1e387
commit d0c8135fff
9 changed files with 433 additions and 333 deletions

View File

@@ -125,6 +125,10 @@ def simulation_server() -> Generator[ServerConfig, None, None]:
server_thread = ServerThread(config)
server_thread.start()
# Speed up simulation for tests (100x faster)
if server_thread.server is not None:
server_thread.server.time_scale = 100.0
try:
yield config
finally: