Refresh web UI and make ML imports optional
All checks were successful
ci / tests (push) Successful in 21s

This commit is contained in:
dan
2025-12-25 09:15:10 +03:00
parent f542747d5e
commit 2499deb071
49 changed files with 4367 additions and 500 deletions

View File

@@ -9,7 +9,7 @@ from tests.utils import find_initial_spot, find_connected_edge, grant_resources
def make_controller(seed: int = 7) -> CLIController:
game = Game(GameConfig(player_names=["Alice", "Bob"], seed=seed))
game = Game(GameConfig(player_names=["Alice", "Bob", "Cara"], seed=seed))
controller = CLIController(game)
_complete_setup(controller)
return controller