Skip to content

Commit

Permalink
Merge pull request #91 from common-workflow-language/test-number-in-j…
Browse files Browse the repository at this point in the history
…unit-xml

Include test number in junit xml output
  • Loading branch information
tetron authored Apr 24, 2019
2 parents cf7239f + e5c370e commit de1561c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cwltest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ def main(): # type: () -> int
for i, job in zip(ntest, jobs):
test_result = job.result()
test_case = test_result.create_test_case(tests[i])
test_case.url = "cwltest:{}#{}".format(suite_name, i + 1)
total += 1
tags = tests[i].get("tags", [])
for t in tags:
Expand Down

0 comments on commit de1561c

Please sign in to comment.