Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions OpenTap.Python.Examples/CsvResultListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ def OnTestPlanRunCompleted(self, planRun, logStream):

# Then write to the file.
System.IO.File.WriteAllText(fileName, self.sb.ToString())

# Publish the csv file as an artifact. This feature is a available from OpenTAP 9.22.0
if hasattr(planRun, "PublishArtifact"):
planRun.PublishArtifact(fileName)

except Exception as e:
self.log.Debug(e)

Expand Down
Loading