Commit 6cd7b608 authored by Alex Bennée's avatar Alex Bennée
Browse files

tests/vm/centos: fix centos build target



To be able to run the docker tests centos has here we have to install
python3 as well as the basic tools.

Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Reviewed-by: default avatarWainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
parent 65e05c82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ class CentosVM(basevm.BaseVM):
        self.wait_ssh()
        self.ssh_root_check("touch /etc/cloud/cloud-init.disabled")
        self.ssh_root_check("yum update -y")
        self.ssh_root_check("yum install -y docker make git")
        self.ssh_root_check("yum install -y docker make git python3")
        self.ssh_root_check("systemctl enable docker")
        self.ssh_root("poweroff")
        self.wait()