Skip to content

Commit de1561c

Browse files
authored
Merge pull request #91 from common-workflow-language/test-number-in-junit-xml
Include test number in junit xml output
2 parents cf7239f + e5c370e commit de1561c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cwltest/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ def main(): # type: () -> int
307307
for i, job in zip(ntest, jobs):
308308
test_result = job.result()
309309
test_case = test_result.create_test_case(tests[i])
310+
test_case.url = "cwltest:{}#{}".format(suite_name, i + 1)
310311
total += 1
311312
tags = tests[i].get("tags", [])
312313
for t in tags:

0 commit comments

Comments
 (0)