]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/tasks/cbt: include py2 deps on ubuntu for now
authorSage Weil <sage@redhat.com>
Thu, 19 Dec 2019 22:35:45 +0000 (16:35 -0600)
committerSage Weil <sage@redhat.com>
Fri, 20 Dec 2019 13:17:10 +0000 (07:17 -0600)
...until cbt is converted to py3

Signed-off-by: Sage Weil <sage@redhat.com>
qa/tasks/cbt.py

index c5567a05d020efa6f8f9dcc7d8c97172602c3616..37c071e5e975781e39150a30b5b20d4d9ed8628c 100644 (file)
@@ -78,6 +78,8 @@ class CBT(Task):
         else:
             install_cmd = ['sudo', 'apt-get', '-y', '--force-yes', 'install']
             cbt_depends = ['python3-yaml', 'python3-lxml', 'librbd-dev', 'collectl']
+            # include py2 for the time being
+            cbt_depends += ['python-yaml', 'python-lxml']
         self.first_mon.run(args=install_cmd + cbt_depends)
 
         benchmark_type = self.cbt_config.get('benchmarks').keys()[0]