2019-04-12 18:17:28 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2019-08-28 08:04:36 +00:00
|
|
|
import unittest
|
|
|
|
|
2019-04-12 18:17:28 +00:00
|
|
|
import composertest
|
|
|
|
|
|
|
|
|
|
|
|
class TestCloud(composertest.ComposerTestCase):
|
|
|
|
def test_aws(self):
|
|
|
|
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
|
|
|
|
|
2019-08-28 08:04:36 +00:00
|
|
|
@unittest.skip('Infra is misconfigured and this was failing in the past')
|
2019-04-12 18:17:28 +00:00
|
|
|
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()
|