Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 17, 2023
1 parent cd2ace4 commit cd04089
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xcp_d/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def check_generated_files(out_dir, output_list_file):

# Ignore figures
found_files = [f for f in found_files if "figures" not in f]
# Ignore config TOML files
found_files = [f for f in found_files if ("config-" not in f) and not f.endswith(".toml")]

with open(output_list_file, "r") as fo:
expected_files = fo.readlines()
Expand Down

0 comments on commit cd04089

Please sign in to comment.