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:
parent
3d27053605
commit
a728011196
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
import composertest
|
import composertest
|
||||||
|
|
||||||
|
|
||||||
@ -29,11 +31,13 @@ class TestImages(composertest.ComposerTestCase):
|
|||||||
self.runCliTest("/tests/cli/test_compose_tar.sh")
|
self.runCliTest("/tests/cli/test_compose_tar.sh")
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skip('Disabled due to issues with nested KVM')
|
||||||
class TestQcow2(composertest.ComposerTestCase):
|
class TestQcow2(composertest.ComposerTestCase):
|
||||||
def test_qcow2(self):
|
def test_qcow2(self):
|
||||||
self.runCliTest("/tests/cli/test_compose_qcow2.sh")
|
self.runCliTest("/tests/cli/test_compose_qcow2.sh")
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skip('Disabled due to issues with nested KVM')
|
||||||
class TestLiveIso(composertest.ComposerTestCase):
|
class TestLiveIso(composertest.ComposerTestCase):
|
||||||
def test_live_iso(self):
|
def test_live_iso(self):
|
||||||
self.runCliTest("/tests/cli/test_compose_live-iso.sh")
|
self.runCliTest("/tests/cli/test_compose_live-iso.sh")
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
import composertest
|
import composertest
|
||||||
|
|
||||||
|
|
||||||
class TestCloud(composertest.ComposerTestCase):
|
class TestCloud(composertest.ComposerTestCase):
|
||||||
|
@unittest.skip('Disabled b/c of RequestTimeTooSkewed issue')
|
||||||
def test_aws(self):
|
def test_aws(self):
|
||||||
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
|
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
|
||||||
|
|
||||||
|
@unittest.skip('Disabled b/c problem with credentials')
|
||||||
def test_azure(self):
|
def test_azure(self):
|
||||||
self.runCliTest("/tests/cli/test_build_and_deploy_azure.sh")
|
self.runCliTest("/tests/cli/test_build_and_deploy_azure.sh")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user