Skip to content

Commit

Permalink
Fix trim-path-prefix functionality in HTML export
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrupp committed Nov 26, 2024
1 parent b0555b9 commit c5747f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ def to_macro_expansions(
html_reports.append({
'fileId': report.file.id,
'reportHash': report.report_hash,
'path': report.file.path,
'checker': {
'name': report.checker_name,
'url': self._get_doc_url(report) or ''
Expand Down Expand Up @@ -309,7 +310,7 @@ def create_index_html(self, output_dir: str):

table_reports = map(lambda data: {
'link': os.path.basename(data['link']),
'file-path': data['report']['fileId'],
'file-path': data['report']['path'],
'report-hash': data['report']['reportHash'],
'checker-name': data['report']['checker']['name'],
'checker-url': data['report']['checker']['url'],
Expand Down Expand Up @@ -436,7 +437,6 @@ def convert(
if not reports:
LOG.info('No report data in %s file.', file_path)
return set()

html_filename = f"{os.path.basename(file_path)}.html"
html_output_path = os.path.join(output_dir_path, html_filename)
_, changed_files = html_builder.create(
Expand Down

0 comments on commit c5747f3

Please sign in to comment.