f1c15c67e0
the image building functionality is now tested by the osbuild-composer test suite. We weren't successfull at making this test suite work with the 2 backends so decided to disabled these scenarios instead. In the future they will likely be deleted.
28 lines
718 B
Python
Executable File
28 lines
718 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import unittest
|
|
|
|
import composertest
|
|
|
|
|
|
@unittest.skip("Image building is now tested by osbuild-composer test suite")
|
|
class TestCloud(composertest.ComposerTestCase):
|
|
def test_alibaba(self):
|
|
self.runCliTest("/tests/cli/test_compose_alibaba.sh")
|
|
|
|
def test_aws(self):
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
|
|
|
|
def test_azure(self):
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_azure.sh")
|
|
|
|
def test_openstack(self):
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_openstack.sh")
|
|
|
|
def test_vmware(self):
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_vmware.sh")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
composertest.main()
|