From 764892749b2037a5a9dcaf4985c09a8dbfef3f3b Mon Sep 17 00:00:00 2001 From: Kai Chappell Date: Wed, 3 Dec 2025 23:01:33 +0000 Subject: [PATCH] Speed up integration tests with 100x time scale --- tests/integration/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 6ed74dc..ac7d797 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -125,9 +125,9 @@ def simulation_server() -> Generator[ServerConfig, None, None]: server_thread = ServerThread(config) server_thread.start() - # Speed up simulation for tests (10x faster) + # Speed up simulation for tests (100x faster) if server_thread.server is not None: - server_thread.server.time_scale = 10.0 + server_thread.server.time_scale = 100.0 try: yield config