Skip AWS, Azure, qcow2 and live-iso tests

due to infrastructure issues. These will be investigated and enabled
later.

Related: rhbz#1698366
This commit is contained in:
Alexander Todorov 2019-07-30 16:13:11 +03:00 committed by Alexander Todorov
parent 3d27053605
commit a728011196
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/usr/bin/python3
import unittest
import composertest
@ -29,11 +31,13 @@ class TestImages(composertest.ComposerTestCase):
self.runCliTest("/tests/cli/test_compose_tar.sh")
@unittest.skip('Disabled due to issues with nested KVM')
class TestQcow2(composertest.ComposerTestCase):
def test_qcow2(self):
self.runCliTest("/tests/cli/test_compose_qcow2.sh")
@unittest.skip('Disabled due to issues with nested KVM')
class TestLiveIso(composertest.ComposerTestCase):
def test_live_iso(self):
self.runCliTest("/tests/cli/test_compose_live-iso.sh")

View File

@ -1,12 +1,16 @@
#!/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")