Daily updates from Odoo
Tuesday, October 29, 2019
1 change
New functionality added to Odoo
This change adds automated checks to build the documentation and catch formatting or compatibility issues earlier. It helps reduce recurring documentation build failures by testing against different tool versions and surfacing warnings before changes are merged.
Original PR description
The doc fails to build semi-regularly: * JS docstrings are incorrectly formatted or written in a way which breaks the parser * new versions of Sphinx remove APIs we're still using * doc fixes don't take older Sphinx versions in account This attempts to automatically build the doc using travis (for a multi-version text matrix, also because that's convenient). travis seems on the wane (apparently acquired & fired a bunch of folks). Apparent alternatives would be: * circleci, haven't managed to get it working yet & I don't understand how to get it working on non-master branch (other branches, PRs, …) (nb: [this might be useful](https://circleci.com/docs/2.0/oss/#build-pull-requests-from-forked-repositories)) * azure pipelines, haven't looked at it yet