summaryrefslogtreecommitdiffstats
path: root/scripts/oe-selftest
diff options
context:
space:
mode:
authorHumberto Ibarra <humberto.ibarra.lopez@intel.com>2016-04-05 22:15:52 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-06 10:29:23 +0100
commit5edfec4305b233856d542fa8244a78a80c008752 (patch)
tree8fa2aa0298458273f08dd4c40250a0464c3f7dd0 /scripts/oe-selftest
parent8109e93a260d487dabf3849466305e496b735aab (diff)
downloadpoky-5edfec4305b233856d542fa8244a78a80c008752.tar.gz
scripts/oe-selftest: remove unneeded coverage warning
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. (From OE-Core rev: 1ccfdb31ea8a50e695d368c4fc78185254aac763) Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-selftest')
-rwxr-xr-xscripts/oe-selftest4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index 9b29ae0b42..2348b47ae9 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -578,9 +578,7 @@ def buildResultClass(args):
578 # check if user can do coverage 578 # check if user can do coverage
579 import coverage 579 import coverage
580 except: 580 except:
581 log.warn('\n'.join(["python coverage is not installed", 581 log.warn("python coverage is not installed. More info on https://pypi.python.org/pypi/coverage")
582 "Make sure your coverage takes into account sub-process",
583 "More info on https://pypi.python.org/pypi/coverage"]))
584 self.coverage_installed = False 582 self.coverage_installed = False
585 583
586 if self.coverage_installed: 584 if self.coverage_installed: