Skip to content

Commit

Permalink
reduce output
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Apr 13, 2024
1 parent bf80ae7 commit 0d11710
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions misc/tests/test-parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0d11710

Please sign in to comment.