Skip to content

Commit 3c9866d

Browse files
committed
Fix upload-test-report
PR numbers are integers which cannot be joined to a string directly but need to be converted first
1 parent 375232b commit 3c9866d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/tools/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def create_test_report(msg, ecs_with_res, init_session_state, pr_nrs=None, gist_
193193
descr = "(partial) EasyBuild log for failed build of %s" % ec['spec']
194194

195195
if pr_nrs is not None:
196-
descr += " (PR #%s)" % ', #'.join(pr_nrs)
196+
descr += " (PR #%s)" % ', #'.join(str(pr_nr) for pr_nr in pr_nrs)
197197

198198
if easyblock_pr_nrs:
199199
descr += "".join(" (easyblock PR #%s)" % nr for nr in easyblock_pr_nrs)

0 commit comments

Comments
 (0)