Skip to content

Commit 30f4af1

Browse files
edit dependency table
1 parent a8e1bca commit 30f4af1

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

suite_report_git/suite_report_git.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,13 @@ def create_dependency_table(self):
9898
)
9999

100100
for dependency, data in self.dependencies.items():
101+
ref = data["ref"] or ""
102+
source = data["source"]
103+
if ".git" in source:
104+
source = source.split(":")[1]
101105
self.trac_log.extend(
102106
create_markdown_row(
103-
dependency, data["source"], data["ref"], data["gitinfo"].is_main()
107+
dependency, source, ref, data["gitinfo"].is_main()
104108
)
105109
)
106110

0 commit comments

Comments
 (0)