Skip to content

Commit

Permalink
Add run arguments to results output
Browse files Browse the repository at this point in the history
Include the list of arguments for the run to the list of results.

Signed-off-by: Antonio Torres <[email protected]>
  • Loading branch information
antoniotorresm authored and rcritten committed Aug 24, 2023
1 parent 911d621 commit b566238
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ipaperftest/core/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def run(self, ctx):
continue
selected_plugin = plugin
try:
self.results.add(Result(plugin, SUCCESS, args=sys.argv))
for result in plugin.execute(ctx):
self.results.add(result)
except Exception:
Expand Down

0 comments on commit b566238

Please sign in to comment.