We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b358e43 commit d450239Copy full SHA for d450239
tools/build_docs.py
@@ -35,6 +35,9 @@
35
flags.DEFINE_string("site_path", "/decision_forests/api_docs/python",
36
"Path prefix in the _toc.yaml")
37
38
+flags.DEFINE_bool('gen_report', False,
39
+ ('Generate an API report containing the health of the'
40
+ 'docstrings of the public API.'))
41
42
def main(argv):
43
if len(argv) > 1:
@@ -47,6 +50,7 @@ def main(argv):
47
50
code_url_prefix=FLAGS.code_url_prefix,
48
51
search_hints=FLAGS.search_hints,
49
52
site_path=FLAGS.site_path,
53
+ gen_report=FLAGS.gen_report,
54
callbacks=[public_api.explicit_package_contents_filter])
55
doc_generator.build(FLAGS.output_dir)
56
0 commit comments