From 5390681c153e680f5f68570c3dc16e24cfbeb3db Mon Sep 17 00:00:00 2001 From: Naresh Bannoth Date: Fri, 4 Oct 2024 16:33:08 +0530 Subject: [PATCH] Fixing the packaging issue in Lcov.py we do not need tiny* for sles hence removing the same for sles and keeping the package for rhel Signed-off-by: Naresh Bannoth --- testcases/Lcov.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testcases/Lcov.py b/testcases/Lcov.py index 61d234a6..e2850e20 100644 --- a/testcases/Lcov.py +++ b/testcases/Lcov.py @@ -59,11 +59,12 @@ def runTest(self): Test for installing the lcov ''' log.info("distro_name=%s" %self.distro) + dep_packages = ['perl*', 'git-core'] if self.distro == 'rhel': cmd = "yum install" + dep_packages.append('tiny*') elif self.distro == 'sles': cmd = "zypper install" - dep_packages = ['perl*', 'tiny*'] log.info("installing the dependency packages") for pkg in dep_packages: if self.distro == 'rhel':