diff --git a/libraclient/shell.py b/libraclient/shell.py index 8763731..d0468d2 100644 --- a/libraclient/shell.py +++ b/libraclient/shell.py @@ -214,7 +214,7 @@ class LibraClientArgumentParser(argparse.ArgumentParser): exits. """ self.print_usage(sys.stderr) - #FIXME(lzyeval): if changes occur in argparse.ArgParser._check_value + # FIXME(lzyeval): if changes occur in argparse.ArgParser._check_value choose_from = ' (choose from' progparts = self.prog.partition(' ') self.exit(2, "error: %(errmsg)s\nTry '%(mainp)s help %(subp)s'" @@ -540,7 +540,7 @@ class LibraShell(object): os_password = None - #FIXME(usrleon): Here should be restrict for project id same as + # FIXME(usrleon): Here should be restrict for project id same as # for os_username or os_password but for compatibility it is not. if not cliutils.isunauthenticated(args.func): if auth_plugin: diff --git a/requirements.txt b/requirements.txt index b277c11..14414a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -python_novaclient>=2.14.1,<2.14.2 +python_novaclient>=2.14.1,!=2.14.2 PrettyTable>=0.7,<0.8 babel stevedore diff --git a/tests/test_lbaas_client.py b/tests/test_lbaas_client.py new file mode 100644 index 0000000..5d058ec --- /dev/null +++ b/tests/test_lbaas_client.py @@ -0,0 +1,7 @@ +import testtools + + +class test_dummy(testtools.TestCase): + + def test_dummy(self): + self.assertEqual(1, 1)