We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fbbbb1 commit e95835fCopy full SHA for e95835f
testcases/Lcov.py
@@ -66,9 +66,9 @@ def runTest(self):
66
dep_packages = ['perl*', 'tiny*']
67
log.info("installing the dependency packages")
68
for pkg in dep_packages:
69
- if self.distro_name == 'rhel':
+ if self.distro == 'rhel':
70
self.cv_HOST.host_run_command(f"{cmd} {pkg} -y")
71
- elif self.distro_name == 'sles':
+ elif self.distro == 'sles':
72
self.cv_HOST.host_run_command(f"{cmd} -y {pkg}")
73
time.sleep(5)
74
log.info("changing dir to /home")
0 commit comments