]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/core/runner: OETestResult remove unneeded override of startTest
authorAníbal Limón <anibal.limon@linux.intel.com>
Fri, 26 May 2017 20:37:31 +0000 (15:37 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 30 May 2017 09:15:22 +0000 (10:15 +0100)
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>
meta/lib/oeqa/core/runner.py

index 40fbf3b423accfdbe494a3e4c074e8287408de51..0b04e8d586f4e9f514dbbb2d4529790bd21a1791 100644 (file)
@@ -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