From e82c70b87b0b853e6fcded9a1a589184bcbf2940 Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Thu, 29 Aug 2024 16:43:09 -0700 Subject: [PATCH] print all lines --- tests/stockfish/test_models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/stockfish/test_models.py b/tests/stockfish/test_models.py index 5a04309..2a606dd 100644 --- a/tests/stockfish/test_models.py +++ b/tests/stockfish/test_models.py @@ -59,6 +59,8 @@ def test_sf_process(self): wtime_lines = send_command(process, "go wtime 1000") btime_lines = send_command(process, "go btime 1000") send_command(process, "quit") + print(wtime_lines) + print(btime_lines) assert any( x.startswith(f"bestmove {move}") for move in ("d2d4", "b1c3")