Skip to content

Commit

Permalink
fix result sut tag (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jupe authored Feb 28, 2022
1 parent 54b9f1a commit afe87a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_opentmi/OpenTmiReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def _new_result(self, report):
elif key == 'SUT_BRANCH':
result.execution.sut.branch = value
elif key == 'SUT_TAG':
result.execution.sut.tag = value
result.execution.sut.tag = [value]
elif key == 'SUT_GIT_URL':
result.execution.sut.git_url = value

Expand Down

0 comments on commit afe87a5

Please sign in to comment.