Skip azure, live-iso & qcow2 tests due to infra issues
Related: rhbz#1724073
This commit is contained in:
parent
ecc1ab705b
commit
a0c5cacae2
@ -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('Nested KVM seems to be buggy and software emulation is too slow')
|
||||||
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('Nested KVM seems to be buggy and software emulation is too slow')
|
||||||
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,5 +1,6 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import unittest
|
||||||
import composertest
|
import composertest
|
||||||
|
|
||||||
|
|
||||||
@ -7,6 +8,7 @@ class TestCloud(composertest.ComposerTestCase):
|
|||||||
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('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