aboutsummaryrefslogtreecommitdiffstats
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-05 23:12:41 +0100
commit1ccfdb31ea8a50e695d368c4fc78185254aac763 (patch)
treea6d167f449b24045cdb6416b419f7b0d0d812ffb
parenta3c7c5148017c652661f2c5f79d90aa80dcb479b (diff)
downloadopenembedded-core-contrib-1ccfdb31ea8a50e695d368c4fc78185254aac763.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. Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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):
# 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: