mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 02:01:16 +00:00
build_plugin_docs: Pylint fix
Fix various pylint warnings.
This commit is contained in:
parent
60693e1b65
commit
52a0a79012
@ -25,7 +25,12 @@ from wa.utils.doc import (strip_inlined_text, get_rst_from_plugin,
|
|||||||
get_params_rst, underline, line_break)
|
get_params_rst, underline, line_break)
|
||||||
from wa.utils.misc import capitalize
|
from wa.utils.misc import capitalize
|
||||||
|
|
||||||
GENERATE_FOR_PACKAGES = ['wa.workloads', 'wa.instruments', 'wa.output_processors']
|
GENERATE_FOR_PACKAGES = [
|
||||||
|
'wa.workloads',
|
||||||
|
'wa.instruments',
|
||||||
|
'wa.output_processors',
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def insert_contents_table(title='', depth=1):
|
def insert_contents_table(title='', depth=1):
|
||||||
"""
|
"""
|
||||||
@ -41,6 +46,7 @@ def insert_contents_table(title='', depth=1):
|
|||||||
|
|
||||||
|
|
||||||
def generate_plugin_documentation(source_dir, outdir, ignore_paths):
|
def generate_plugin_documentation(source_dir, outdir, ignore_paths):
|
||||||
|
# pylint: disable=unused-argument
|
||||||
pluginloader.clear()
|
pluginloader.clear()
|
||||||
pluginloader.update(packages=GENERATE_FOR_PACKAGES)
|
pluginloader.update(packages=GENERATE_FOR_PACKAGES)
|
||||||
if not os.path.exists(outdir):
|
if not os.path.exists(outdir):
|
||||||
@ -73,9 +79,11 @@ def generate_target_documentation(outdir):
|
|||||||
'juno_linux',
|
'juno_linux',
|
||||||
'juno_android']
|
'juno_android']
|
||||||
|
|
||||||
intro = '\nThis is a list of commonly used targets and their device '\
|
intro = (
|
||||||
'parameters, to see a complete for a complete reference please use the '\
|
'\nThis is a list of commonly used targets and their device '
|
||||||
|
'parameters, to see a complete for a complete reference please use the'
|
||||||
' WA :ref:`list command <list-command>`.\n\n\n'
|
' WA :ref:`list command <list-command>`.\n\n\n'
|
||||||
|
)
|
||||||
|
|
||||||
pluginloader.clear()
|
pluginloader.clear()
|
||||||
pluginloader.update(packages=['wa.framework.target.descriptor'])
|
pluginloader.update(packages=['wa.framework.target.descriptor'])
|
||||||
@ -112,7 +120,8 @@ def generate_config_documentation(config, outdir):
|
|||||||
if not os.path.exists(outdir):
|
if not os.path.exists(outdir):
|
||||||
os.mkdir(outdir)
|
os.mkdir(outdir)
|
||||||
|
|
||||||
outfile = os.path.join(outdir, '{}.rst'.format('_'.join(config.name.split())))
|
config_name = '_'.join(config.name.split())
|
||||||
|
outfile = os.path.join(outdir, '{}.rst'.format(config_name))
|
||||||
with open(outfile, 'w') as wfh:
|
with open(outfile, 'w') as wfh:
|
||||||
wfh.write(get_params_rst(config.config_points))
|
wfh.write(get_params_rst(config.config_points))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user