aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/runner.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-05-26 15:37:31 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-30 10:15:22 +0100
commit63606ffaaac1b84ddcad8a1c1006f8110050e20e (patch)
treecd1b8812fcadfcf67a55f85c968acc0f804ee095 /meta/lib/oeqa/core/runner.py
parent8787fba3df8acd9d2438669d20b1a5060caa9022 (diff)
downloadopenembedded-core-contrib-63606ffaaac1b84ddcad8a1c1006f8110050e20e.tar.gz
oeqa/core/runner: OETestResult remove unneeded override of startTest
I override this method before for keep track of results and forget to remove it, now isn't need. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/core/runner.py')
-rw-r--r--meta/lib/oeqa/core/runner.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py
index 40fbf3b423..0b04e8d586 100644
--- a/meta/lib/oeqa/core/runner.py
+++ b/meta/lib/oeqa/core/runner.py
@@ -44,9 +44,6 @@ class OETestResult(_TestResult):
self.tc._results['skipped'] = self.skipped
self.tc._results['expectedFailures'] = self.expectedFailures
- def startTest(self, test):
- super(OETestResult, self).startTest(test)
-
class OETestRunner(_TestRunner):
streamLoggerClass = OEStreamLogger