Enable warning-is-error in doc build

- Fix docstring warnings
- pbr warnerrors is no longer needed.

Change-Id: I70532d99f34023b5fcce4373b6456cae2fbb642a
This commit is contained in:
Akihiro Motoki 2017-07-06 21:02:55 +00:00
parent ad8274cb8f
commit 8d0a5a7fea
3 changed files with 5 additions and 4 deletions

View File

@ -41,8 +41,8 @@ def no_translate_logs(logical_line, filename):
:param logical_line: The logical line to check. :param logical_line: The logical line to check.
:param filename: The file name where the logical line exists. :param filename: The file name where the logical line exists.
:returns: None if the logical line passes the check, otherwise a tuple :returns: None if the logical line passes the check, otherwise a tuple
is yielded that contains the offending index in logical line and a is yielded that contains the offending index in logical line and a
message describe the check validation failure. message describe the check validation failure.
""" """
if _log_translation_hint.match(logical_line): if _log_translation_hint.match(logical_line):
yield (0, "N537: Log messages should not be translated!") yield (0, "N537: Log messages should not be translated!")

View File

@ -32,7 +32,7 @@ def get_datastore_by_ref(session, ds_ref):
:param session: a vmware api session object :param session: a vmware api session object
:param ds_ref: managed object reference of a datastore :param ds_ref: managed object reference of a datastore
:rtype : a datastore object :rtype: a datastore object
""" """
lst_properties = ["summary.type", lst_properties = ["summary.type",
"summary.name", "summary.name",
@ -195,6 +195,7 @@ class DatastorePath(object):
file path to a virtual disk. file path to a virtual disk.
Note: Note:
- Datastore path representations always uses forward slash as separator - Datastore path representations always uses forward slash as separator
(hence the use of the posixpath module). (hence the use of the posixpath module).
- Datastore names are enclosed in square brackets. - Datastore names are enclosed in square brackets.

View File

@ -26,6 +26,7 @@ packages =
source-dir = doc/source source-dir = doc/source
build-dir = doc/build build-dir = doc/build
all_files = 1 all_files = 1
warning-is-error = 1
[upload_sphinx] [upload_sphinx]
upload-dir = doc/build/html upload-dir = doc/build/html
@ -46,7 +47,6 @@ output_file = oslo_vmware/locale/oslo_vmware.pot
[pbr] [pbr]
autodoc_index_modules = 1 autodoc_index_modules = 1
warnerrors = True
autodoc_exclude_modules = autodoc_exclude_modules =
oslo_vmware._i18n oslo_vmware._i18n
oslo_vmware.tests.* oslo_vmware.tests.*