Skip to content

Commit

Permalink
Skip cli-keystone catalog and help tests
Browse files Browse the repository at this point in the history
Skip those two tests until Bug #1213912 is solved,
as it freezed all stable/grizzly checks.

Change-Id: I0a7b22f3212d79705f922e8bcabd29be365123a2
  • Loading branch information
queria committed Aug 23, 2013
1 parent c9692fb commit 27e8547
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cli/simple_read_only/test_keystone.py
Expand Up @@ -19,6 +19,8 @@
import re
import subprocess

import testtools

import cli


Expand All @@ -38,6 +40,7 @@ def test_admin_fake_action(self):
self.keystone,
'this-does-not-exist')

@testtools.skip("Skipped until the Bug #1213912 is resolved")
def test_admin_catalog_list(self):
out = self.keystone('catalog')
catalog = self.parser.details_multiple(out, with_label=True)
Expand Down Expand Up @@ -87,6 +90,7 @@ def test_admin_discover(self):
self.assertIn('Keystone found at http', discovered)
self.assertIn('supports version', discovered)

@testtools.skip("Skipped until the Bug #1213912 is resolved")
def test_admin_help(self):
help_text = self.keystone('help')
lines = help_text.split('\n')
Expand Down

0 comments on commit 27e8547

Please sign in to comment.