File suse-skip-some-tests.diff of Package openstack-tempest
Index: tempest/cli/simple_read_only/compute/test_nova_manage.py
===================================================================
--- tempest/cli/simple_read_only/compute/test_nova_manage.py.orig
+++ tempest/cli/simple_read_only/compute/test_nova_manage.py
@@ -18,6 +18,7 @@ from tempest import config
from tempest import exceptions
from tempest.openstack.common import log as logging
+import testtools
CONF = config.CONF
LOG = logging.getLogger(__name__)
@@ -57,6 +58,7 @@ class SimpleReadOnlyNovaManageTest(cli.C
def test_help_flag(self):
self.nova_manage('', '-h')
+ @testtools.skipIf(True, "fails if /etc/nova/release is used")
def test_version_flag(self):
# Bug 1159957: nova-manage --version writes to stderr
self.assertNotEqual("", self.nova_manage('', '--version',
Index: tempest/scenario/test_load_balancer_basic.py
===================================================================
--- tempest/scenario/test_load_balancer_basic.py.orig
+++ tempest/scenario/test_load_balancer_basic.py
@@ -308,6 +308,7 @@ class TestLoadBalancerBasic(manager.Neut
self.assertEqual(expected,
set(resp))
+ @test.skip_because(bug='1295165')
@test.services('compute', 'network')
def test_load_balancer_basic(self):
self._create_server('server1')