aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting')
-rw-r--r--xtesting/core/robotframework.py3
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