You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sphinx build warnings in CI currently remain unnoticed.
We should have a look at how we can integrate them into CI and let warnings/violations fail the corresponding workflow to avoid having to re-check manually each time.
The text was updated successfully, but these errors were encountered:
This adds a code style check to avoid unexpectedly shipping docs/docstrings which cause issues.
Options (the long names are only part of the upcoming 7.3 release), based upon https://www.sphinx-doc.org/en/master/man/sphinx-build.html:
* `-n`: Report warnings for missing references.
* `-W`: Turn warnings into errors and stop at first violation.
* `--keep-going`: Improve `-W` by collecting all violations and only failing at the end.
* `-T`: Display the full traceback on actual errors.
* `-b html`: Build HTML pages.
* `docs`: Source directory.
* `build/sphinx/html`: Target directory.
Fixes#2402
Sphinx build warnings in CI currently remain unnoticed.
We should have a look at how we can integrate them into CI and let warnings/violations fail the corresponding workflow to avoid having to re-check manually each time.
The text was updated successfully, but these errors were encountered: