Skip to content

Commit

Permalink
added json pattern to upload schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-goldman committed Jan 16, 2025
1 parent aaa8313 commit f477043
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ def compare_outputs(self, outputs, raise_error=True):
files[0], files[1]))
shutil.move(files[0], files[1])
log_pattern = [os.path.join(os.path.dirname(x), '*.log') for x in new_truths]
generate_upload_schema(pattern=new_truths + log_pattern,
json_pattern = [os.path.join(os.path.dirname(x), '*.json') for x in new_truths]
generate_upload_schema(pattern=new_truths + log_pattern + json_pattern,
testname=testname,
target= tree)

Expand Down

0 comments on commit f477043

Please sign in to comment.