tests: Build all available image types during integration test

comparing to lorax-composer test suite only ext4-filesystem and
partitioned-disk are built without asserting anything other than
the build succeeds. For the rest of the images we usually try to
boot them and verify the resulting VM works somehow.
This commit is contained in:
Alexander Todorov 2020-02-24 11:53:29 +02:00 committed by Tom Gundersen
parent ca599a8f6f
commit 841885c1b4

View file

@ -60,7 +60,14 @@ func main() {
runComposerCLI(false, "status", "show")
// Full integration tests
testCompose("ami")
testCompose("ext4-filesystem")
testCompose("openstack")
testCompose("partitioned-disk")
testCompose("qcow2")
testCompose("tar")
testCompose("vhd")
testCompose("vmdk")
}
func testCompose(outputType string) {