Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions qtp_job_output_folder/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ def generate_html_summary(qclient, job_id, parameters, out_dir):
artifact_info = qclient.get(qclient_url)

# [0] there is only one directory
folder = qclient.fetch_file_from_central(
artifact_info['files']['directory'][0]['filepath'])
folder = artifact_info['files']['directory'][0]['filepath']

# 2. Generate summary
index_fp, viz_fp = _generate_html_summary(job_id, folder, out_dir)
Expand Down
2 changes: 1 addition & 1 deletion qtp_job_output_folder/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def validate(qclient, job_id, parameters, out_dir):

files = loads(parameters['files'])
# [0] we only expect one directory
folder = qclient.fetch_file_from_central(files['directory'][0])
folder = files['directory'][0]

success = False
ainfo = None
Expand Down
Loading