diff options
author | 2024-11-14 17:30:10 +0100 | |
---|---|---|
committer | 2024-11-15 15:45:29 +0100 | |
commit | a222f6f0e295e35dd226a460cd14d247d8549a93 (patch) | |
tree | 4737bfc375d8518a3139d872edd0574440a9ec6b | |
parent | f60218d2336d0424e070e19f31e356a2f1d622c2 (diff) |
Don't override Robot's output
Change-Id: I4c302f429f8cd87d7becee2bc4e4c5b1e2112ecb
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 10a748dd2a3abbc8a0b63cb6879ecce3fa63f1fd)
-rw-r--r-- | xtesting/core/robotframework.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xtesting/core/robotframework.py b/xtesting/core/robotframework.py index 92b75930..1f853037 100644 --- a/xtesting/core/robotframework.py +++ b/xtesting/core/robotframework.py @@ -117,7 +117,8 @@ class RobotFramework(testcase.TestCase): self.__logger.exception("Cannot create %s", self.res_dir) return self.EX_RUN_ERROR stream = StringIO() - kwargs["output"] = self.xml_file + if 'output' not in kwargs: + kwargs["output"] = self.xml_file kwargs["log"] = "NONE" kwargs["report"] = "NONE" kwargs["stdout"] = stream |