From b566238b91f85eab5f1234cc44064d632f8b7943 Mon Sep 17 00:00:00 2001 From: Antonio Torres Date: Thu, 24 Aug 2023 12:27:04 +0200 Subject: [PATCH] Add run arguments to results output Include the list of arguments for the run to the list of results. Signed-off-by: Antonio Torres --- src/ipaperftest/core/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ipaperftest/core/main.py b/src/ipaperftest/core/main.py index 9bbbc51..9f6fe62 100644 --- a/src/ipaperftest/core/main.py +++ b/src/ipaperftest/core/main.py @@ -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: