aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core
diff options
context:
space:
mode:
authorLeonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>2017-05-26 15:37:52 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-30 10:15:22 +0100
commit05b16219698fbd30ec76697e1b3be6d31e8f8878 (patch)
tree905fdd11475d65eda25073ae0f7a52dd310f80a2 /meta/lib/oeqa/core
parent2bb02cd3d6ec6c2c22ab6b567e2985015655fae6 (diff)
downloadopenembedded-core-contrib-05b16219698fbd30ec76697e1b3be6d31e8f8878.tar.gz
oeqa/core/context: Omit docstring output on XMLResult
By default, the xml runner class prints out the docstring for every unit test but it order to keep the same format as the standard runner, avoid docstring output setting descriptions to False. Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/core')
-rw-r--r--meta/lib/oeqa/core/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/context.py b/meta/lib/oeqa/core/context.py
index 20d82360e6..6667f46f1e 100644
--- a/meta/lib/oeqa/core/context.py
+++ b/meta/lib/oeqa/core/context.py
@@ -51,7 +51,7 @@ class OETestContext(object):
self.suites = self.loader.discover()
def runTests(self):
- self.runner = self.runnerClass(self, verbosity=2)
+ self.runner = self.runnerClass(self, descriptions=False, verbosity=2)
self._run_start_time = time.time()
result = self.runner.run(self.suites)