-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[doc test helper] Better representation of failure for multiple good files #8991
[doc test helper] Better representation of failure for multiple good files #8991
Conversation
a153835
to
dfe1698
Compare
I re-started from scratch because the approach was fubar. New output after refactor (correct this time):
I realized that there's an issue with the "bad" tests, if there's multiple files we need at least one warning for each files, going to open a fix soonish. |
Check fail probably due to:
pre-commit run --hook-stage push sphinx-generated-doc --all-files || {
git diff ; \
echo "Make sure that there are no modifications locally when launching 'make html'" ; \
exit 1; \
} means the message is launched even when git diff return nothing. |
Merging without approval because it was approved in #9020 (comment) |
Type of Changes
Description
Seen in #8960, previously the error message was:
As seen in https://github.com/pylint-dev/pylint/actions/runs/6026790597/job/16350544929?pr=8960. Now with this MR it's: