lorax/test/check-cloud
Alexander Todorov a728011196 Skip AWS, Azure, qcow2 and live-iso tests
due to infrastructure issues. These will be investigated and enabled
later.

Related: rhbz#1698366
2019-09-13 11:27:12 +03:00

26 lines
674 B
Python
Executable File

#!/usr/bin/python3
import unittest
import composertest
class TestCloud(composertest.ComposerTestCase):
@unittest.skip('Disabled b/c of RequestTimeTooSkewed issue')
def test_aws(self):
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
@unittest.skip('Disabled b/c problem with credentials')
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()