From b70428fe3d6cb4e24493500a40ef4cd6108a3a68 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Mon, 27 Jul 2026 20:21:56 +0900 Subject: [PATCH] chore: BM API is expected to fail (#417) --- tests/test_remote_api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_remote_api.py b/tests/test_remote_api.py index e47a4d6..4e76b26 100644 --- a/tests/test_remote_api.py +++ b/tests/test_remote_api.py @@ -13,13 +13,17 @@ def config(): xdg = parse_filepaths(paths) return get_config(xdg.config) + def test_ipdb(): assert probe.test_ipdb() + def test_steam(config): key = config["steam_api"] assert probe.test_steam_api(key) + def test_bm(config): + # NOTE: see ticket #417; expected to return False key = config["bm_api"] - assert probe.test_bm_api(key) + assert probe.test_bm_api(key) is False