summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-01-04 13:56:26 +0000
committerGerrit Code Review <review@openstack.org>2016-01-04 13:56:26 +0000
commitb28385560a30c0c2bec828f44806d78ed117fef5 (patch)
treeaa7a99d7aa454629c468b5119c336a993f33b2e8
parentcee6bbdb313069f529973bcfd0b363e46e835e85 (diff)
parent9688f8ebd1ace0f338a1eabb77e1bee249e5630b (diff)
downloados-client-config-b28385560a30c0c2bec828f44806d78ed117fef5.tar.gz
Merge "Fix README.rst, add a check for it to fit PyPI rules"
-rw-r--r--README.rst2
-rw-r--r--tox.ini7
2 files changed, 7 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 5cbc118..f078f3c 100644
--- a/README.rst
+++ b/README.rst
@@ -355,7 +355,7 @@ with - as well as a consumption argument.
Constructing Legacy Client objects
----------------------------------
-If all you want to do is get a Client object from a python-*client library,
+If all you want to do is get a Client object from a python-\*client library,
and you want it to do all the normal things related to clouds.yaml, `OS_`
environment variables, a helper function is provided. The following
will get you a fully configured `novaclient` instance.
diff --git a/tox.ini b/tox.ini
index 7a2d3a0..95dff6b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -21,7 +21,12 @@ commands = {posargs}
commands = python setup.py test --coverage --coverage-package-name=os_client_config --testr-args='{posargs}'
[testenv:docs]
-commands = python setup.py build_sphinx
+deps =
+ {[testenv]deps}
+ readme
+commands =
+ python setup.py build_sphinx
+ python setup.py check -r -s
[flake8]
# H803 skipped on purpose per list discussion.