Release v0.1.0
Some checks failed
CI / Release (push) Has been cancelled
CI / Lint (push) Successful in 4s
CI / Type Check (push) Successful in 19s
CI / Test (push) Successful in 37s

This commit is contained in:
2025-12-04 13:18:17 +00:00
parent 64be5dacbf
commit ba2ab9d5d8
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: