From 007a1a3acf964ef96ac4d45db12ff58e6277605f Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 15 Nov 2024 20:00:14 +0100 Subject: Set xml_file before parsing results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I22a6d0c5224e3ff5c67e8a2e6c805ed82d803495 Signed-off-by: Cédric Ollivier --- xtesting/core/robotframework.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'xtesting/core') diff --git a/xtesting/core/robotframework.py b/xtesting/core/robotframework.py index 1f853037..1ac1575c 100644 --- a/xtesting/core/robotframework.py +++ b/xtesting/core/robotframework.py @@ -119,6 +119,8 @@ class RobotFramework(testcase.TestCase): stream = StringIO() if 'output' not in kwargs: kwargs["output"] = self.xml_file + else: + self.xml_file = kwargs["output"] kwargs["log"] = "NONE" kwargs["report"] = "NONE" kwargs["stdout"] = stream -- cgit 1.2.3-korg