chore: enable generation for google-cloud-recaptcha-enterprise#16726
Conversation
There was a problem hiding this comment.
Code Review
This pull request enables code generation for the reCAPTCHA Enterprise library, cleans up its repository metadata by removing the empty issue tracker field, and adjusts the documentation build configuration. Feedback was provided regarding the removal of the -W flag in the documentation build process, as repository rules require shared configurations to remain consistent unless changed globally.
| session.run( | ||
| "sphinx-build", | ||
| "-W", # warnings as errors | ||
| "-T", # show full traceback on exception |
There was a problem hiding this comment.
The -W flag (warnings as errors) has been removed from the sphinx-build command. This flag ensures that documentation is built without warnings. According to repository rules, changes to shared configurations should be applied consistently across all relevant packages in a dedicated, universal change rather than piecemeal in individual pull requests. Unless this is a repository-wide change, please retain the flag to prevent regressions in documentation quality.
| "-T", # show full traceback on exception | |
| "-W", # warnings as errors | |
| "-T", # show full traceback on exception |
References
- Changes to shared configurations, like mypy or sphinx flags, should be applied consistently across all relevant packages in a dedicated, universal change rather than piecemeal in individual pull requests.
No description provided.