-
-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
gh-101100: Test docs in nit-picky mode #102513
Conversation
…uest event is not ahead of the base commit' Re: jitterbit/get-changed-files#11
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great; thanks @hugovk and @encukou ! I did have some comments; see below.
If adding back legitimate warnings for missing documentation results in the 3.12 What's New no longer being fully clean, you could add library/sqlite3.rst
in its place, which Erlend and I have made sure should be clean (documenting what was missing, etc).
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Python repos don’t use force pushes |
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
In general, PR authors are discouraged from force-pushing once the PR is submitted to avoid making things more difficult for reviewers, but it's not an absolute blind ban—there's still some room for careful judgement, in specific situations where doing so does not conflict with, or in fact supports, the actual reasons for which we have that guideline, i.e. maximizing reviewability. In particular, when we originally discussed this, it was agreed that it's fine to force-push before a draft PR is marked for review, as it can be a very helpful tool to organize a potentially very noisy initial commit history into an atomic, clearly-explained series of changes, which can greatly aid reviewability. Likewise, it can potentially make sense and actually aid rather than hurt reviewability to amend a single commit immediately after pushing it to fix a small obvious typo introduced in that commit—which was the case here, with the fixup pushed less than 60 seconds after the original. There's little to no chance any reviewer would have seen, much less review/comment on the commit that quickly, thus there's minimal practical negative impact there. By contrast, it reduces unnecessary noise in the commit history and preserves a single atomic commit for reviewers to look at, without back-and-forth trivial fixups complicating things (which certainly make my life harder as a reviewer). And of course, you can still easily see both commits and compare them with one click if desired in the PR's full conversation history. |
Is there anything else needed here? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM from me (minus a nit); thanks @hugovk
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Fixed and all green now!
|
Status check is done, and it's a success ✅. |
Thanks for checking Miss Islington! Shouldn't you automerge too? |
Maybe its time to just switch to regular GitHub automerge? Is there a reason to still use the old system? |
Yeah, it's time! Please could you create a https://github.com/python/core-workflow/ issue? We'll need to coordinate deleting some https://github.com/python/miss-islington code.
Backport PRs: |
Sure, I opened python/core-workflow#498 .
The code might still be needed to support automerge-by-default for miss-islington PRs, if GItHub's API doesn't have a way for her to enable it when she makes them. But I discussed that further on the issue. |
I think this check now breaks when encountering NEWS entries in the
|
Please see PR #103019. |
I don't think this is good general policy. Someone encountering a deprecated function in code they inherited should be able to find out what it does and what to use instead. |
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Petr Viktorin <encukou@gmail.com>
This builds upon @encukou's encukou#21, see also https://discuss.python.org/t/broken-references-in-sphinx-docs/19463.
This adds two new parts to the docs CI.
1. Check files modified in PR
The files are
touch
ed and the Sphinx build re-ran. Sphinx only rebuilds the modified files so is quick. But this time we run Sphinx with the-n
nit-picky mode enabled to be warned about extra documentation problems.However, we don't let it fail the build: you may have modified a file that already has lots of issues, but didn't introduce any (or many) new ones.
But we do pipe the warnings through
Doc/tools/warnings-to-gh-actions.py
which uses GitHub's annotations feature to highlight where exactly the warning occurs. For example, see the demo at https://github.com/encukou/cpython/pull/21/files:Screenshot
2. Check hardcoded list of "known good files"
We want to make sure certain files have no warnings, and remain with no warnings. To begin with, only
Doc/whatsnew/3.12.rst
is in this list, but we will iteratively add more as we fix them, especially "important" files.This time, we turn the warnings into errors with
-W
, because we don't want these files to regress.For example, here's
3.12.rst
failing: https://github.com/hugovk/cpython/actions/runs/4347385122/jobs/7595550243Screenshot
This PR then also fixes
3.12.rst
so the CI passes.TODO:
exceptions(new in 3.12), weakref, asyncio-tasks and gzip docs to 3.11/3.10.Automerge-Triggered-By: GH:hugovk
Automerge-Triggered-By: GH:hugovk