From 7f675cce052a057b756011d79453819faa80c870 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Fri, 22 Feb 2019 15:47:50 +0100 Subject: be more verbose if requirement was not found --- src/benchmark.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/benchmark.py') diff --git a/src/benchmark.py b/src/benchmark.py index 87ec8c2..c01a41a 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -93,6 +93,7 @@ class Benchmark (object): # Search for file if fpath: if not is_exe(r): + print("requirement:", r, "not found") return False # Search in PATH else: @@ -103,6 +104,7 @@ class Benchmark (object): found = True if not found: + print("requirement:", r, "not found") return False return True -- cgit v1.2.3