From c464ccfb95a3cd393e7edd8cf7e8bf6e23504f78 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 8 Jul 2022 12:25:10 -0300 Subject: [PATCH] [Test] Added test for check_tool_binary_local --- tests/test_plot/test_dep_downloader.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_plot/test_dep_downloader.py b/tests/test_plot/test_dep_downloader.py index f1a5fc64..b1619265 100644 --- a/tests/test_plot/test_dep_downloader.py +++ b/tests/test_plot/test_dep_downloader.py @@ -42,6 +42,8 @@ def try_dependency(ctx, caplog, monkeypatch, docstring, name_dep, downloader_nam if use_wrapper: dep.downloader = downloader_func res = mod.try_download_tool_binary(dep) + if res: + res = mod.check_tool_binary_local(dep) else: res = downloader_func(dep, 'Linux', 'x86_64') cov.stop()