Skip azure, live-iso & qcow2 tests due to infra issues

Related: rhbz#1724073
This commit is contained in:
Alexander Todorov 2019-07-29 12:52:09 +03:00 committed by Alexander Todorov
parent ecc1ab705b
commit a0c5cacae2
2 changed files with 6 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('Nested KVM seems to be buggy and software emulation is too slow')
class TestQcow2(composertest.ComposerTestCase):
def test_qcow2(self):
self.runCliTest("/tests/cli/test_compose_qcow2.sh")
@unittest.skip('Nested KVM seems to be buggy and software emulation is too slow')
class TestLiveIso(composertest.ComposerTestCase):
def test_live_iso(self):
self.runCliTest("/tests/cli/test_compose_live-iso.sh")

View File

@ -1,5 +1,6 @@
#!/usr/bin/python3
import unittest
import composertest
@ -7,6 +8,7 @@ class TestCloud(composertest.ComposerTestCase):
def test_aws(self):
self.runCliTest("/tests/cli/test_build_and_deploy_aws.sh")
@unittest.skip('Problem with credentials')
def test_azure(self):
self.runCliTest("/tests/cli/test_build_and_deploy_azure.sh")