Merge "Updated from global requirements"

This commit is contained in:
Jenkins 2015-03-10 19:58:04 +00:00 committed by Gerrit Code Review
commit 41cb13f484
2 changed files with 3 additions and 8 deletions

View File

@ -8,7 +8,7 @@ iso8601>=0.1.9
Jinja2>=2.6 # BSD License (3 clause)
jsonschema>=2.0.0,<3.0.0
netaddr>=0.7.12
oslo.config>=1.6.0 # Apache-2.0
oslo.config>=1.9.0 # Apache-2.0
oslo.db>=1.4.1 # Apache-2.0
oslo.i18n>=1.3.0 # Apache-2.0
oslo.log>=0.4.0 # Apache-2.0

View File

@ -15,7 +15,6 @@
import mock
from oslo_config import cfg
import testtools
from rally.cmd import cliutils
from rally.cmd.commands import deployment
@ -32,10 +31,6 @@ CONF = cfg.CONF
FAKE_TASK_UUID = "bb0f621c-29bd-495c-9d7a-d844335ed0fa"
@testtools.skip(
"These tests are not work with latest(1.6.0) oslo.config (see "
"https://review.openstack.org/#/c/135150 for more details). "
"Should wait for new release of oslo.config with appropriate fix.")
class CliUtilsTestCase(test.TestCase):
def setUp(self):
@ -54,7 +49,7 @@ class CliUtilsTestCase(test.TestCase):
super(CliUtilsTestCase, self).tearDown()
def test_make_header(self):
h1 = cliutils.make_header("msg", size="4", symbol="=")
h1 = cliutils.make_header("msg", size=4, symbol="=")
self.assertEqual(h1, "====\n msg\n====\n")
def test_pretty_float_formatter_rounding(self):
@ -157,7 +152,7 @@ class CliUtilsTestCase(test.TestCase):
self.assertTrue(mock_task_get.called)
self.assertEqual(ret, 1)
@mock.patch("rally.common.cliutils.validate_args",
@mock.patch("rally.cmd.cliutils.validate_args",
side_effect=cliutils.MissingArgs("missing"))
def test_run_show_fails(self, mock_validate_args):
ret = cliutils.run(["rally", "show", "keypairs"], self.categories)