Skip to content

Commit 405fe47

Browse files
Simplify Arasan engine download process
Removed try-except block for downloading Arasan engine.
1 parent e35c623 commit 405fe47

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

test_bot/test_bot.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -285,11 +285,7 @@ def test_arasan() -> None:
285285
CONFIG["engine"]["ponder"] = False
286286
CONFIG["pgn_directory"] = "TEMP/arasan_game_record"
287287
logger.info("Downloading Arasan")
288-
try:
289-
download_arasan()
290-
except Exception:
291-
logger.exception("Could not download the Arasan chess engine")
292-
pytest.skip("Could not download the Arasan chess engine")
288+
download_arasan()
293289
win = run_bot(CONFIG, logging_level)
294290
logger.info("Finished Testing Arasan")
295291
assert win

0 commit comments

Comments
 (0)