]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/oe-selftest: remove unneeded coverage warning
authorHumberto Ibarra <humberto.ibarra.lopez@intel.com>
Wed, 6 Apr 2016 03:15:52 +0000 (22:15 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 5 Apr 2016 22:12:41 +0000 (23:12 +0100)
There is a message that warns the user about enabling subprocessing
for coverage to work. After the fix for Yocto #8930,
this task is done automatically, so the warning is not needed
anymore.

Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/oe-selftest

index 9b29ae0b423a3f27f01bceba0e67d9ebb2be85fe..2348b47ae92b4ae3754d1cb6d5be6b9f4a13f968 100755 (executable)
@@ -578,9 +578,7 @@ def buildResultClass(args):
                     # check if user can do coverage
                     import coverage
                 except:
-                    log.warn('\n'.join(["python coverage is not installed",
-                        "Make sure your coverage takes into account sub-process",
-                        "More info on https://pypi.python.org/pypi/coverage"]))
+                    log.warn("python coverage is not installed. More info on https://pypi.python.org/pypi/coverage")
                     self.coverage_installed = False
 
                 if self.coverage_installed: