a0322afec3
Also causes failures on the Cockpit side of things, see https://github.com/cockpit-project/cockpit/pull/12645
25 lines
627 B
Python
Executable File
25 lines
627 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import unittest
|
|
|
|
import composertest
|
|
|
|
|
|
class TestCloud(composertest.ComposerTestCase):
|
|
def test_aws(self):
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
|
|
|
|
@unittest.skip('Infra is misconfigured and this was failing in the past')
|
|
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()
|