From 0d11710685d160acab9e99cf435b75d86654dbd0 Mon Sep 17 00:00:00 2001 From: Simon Dold Date: Sat, 13 Apr 2024 16:07:32 +0200 Subject: [PATCH] reduce output --- misc/tests/test-parameters.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/misc/tests/test-parameters.py b/misc/tests/test-parameters.py index 6919e571d7..08dd8c5258 100644 --- a/misc/tests/test-parameters.py +++ b/misc/tests/test-parameters.py @@ -249,14 +249,9 @@ def main(): search_dir = os.path.join(SRC_DIR, "search") cc_files = get_src_files(search_dir, (".cc",)) # assert len(cc_files) > 0 - if not len(cc_files) > 0: + if not len(cc_files) > 0 or True: print("WARNING: Not .cc files found.") print("search_dir: ", search_dir) - print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout)) - tree = subprocess.run(["cd", "~"+str(search_dir),], stdout=subprocess.PIPE, text=True) - print(tree.stdout) - tree = subprocess.run(["ls", "~"+str(search_dir),], stdout=subprocess.PIPE, text=True) - print(tree.stdout) tree = subprocess.run(["tree", str(search_dir), "-L", "2"], stdout=subprocess.PIPE, text=True) print(tree.stdout) print("Checking Component Parameters of"