From: Sage Weil Date: Mon, 16 Dec 2019 16:17:26 +0000 (-0600) Subject: qa/tasks/cbt: install python3 deps X-Git-Tag: v15.1.0~448^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=299375852a4b3210cf5b95d3559d69080f14339f;p=ceph.git qa/tasks/cbt: install python3 deps Signed-off-by: Sage Weil --- diff --git a/qa/tasks/cbt.py b/qa/tasks/cbt.py index 606a0c4db3d4..ed8237215d30 100644 --- a/qa/tasks/cbt.py +++ b/qa/tasks/cbt.py @@ -75,10 +75,10 @@ class CBT(Task): if system_type == 'rpm': install_cmd = ['sudo', 'yum', '-y', 'install'] - cbt_depends = ['python-yaml', 'python-lxml', 'librbd-devel', 'pdsh', 'collectl'] + cbt_depends = ['python3-yaml', 'python3-lxml', 'librbd-devel', 'pdsh', 'collectl'] else: install_cmd = ['sudo', 'apt-get', '-y', '--force-yes', 'install'] - cbt_depends = ['python-yaml', 'python-lxml', 'librbd-dev', 'collectl'] + cbt_depends = ['python3-yaml', 'python3-lxml', 'librbd-dev', 'collectl'] self.first_mon.run(args=install_cmd + cbt_depends) benchmark_type = self.cbt_config.get('benchmarks').keys()[0]