Step based installs are a qemu feature, used to install guests, so the step.cfg file should be given priority in qemu sets.
With this patch, they'll have priority, together with unattended_install in testing order. CC: Gleb Natapov <[email protected]> Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- virttest/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virttest/bootstrap.py b/virttest/bootstrap.py index 627e0ed..883687d 100644 --- a/virttest/bootstrap.py +++ b/virttest/bootstrap.py @@ -23,7 +23,7 @@ mandatory_headers = {'qemu': ['Python.h', 'types.h', 'socket.h', 'unistd.h'], 'v2v': [], 'libguestfs': []} -first_subtest = {'qemu': ['unattended_install'], +first_subtest = {'qemu': ['unattended_install', 'steps'], 'libvirt': ['unattended_install'], 'openvswitch': ['unattended_install'], 'v2v': ['unattended_install'], -- 1.8.1.2 _______________________________________________ Virt-test-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/virt-test-devel
