-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Fix stubtest_third_party.py on linux #13643
base: main
Are you sure you want to change the base?
Conversation
Previously, when running it on Linux without the `--specified-platforms-only` flag, it printed spurious warnings and ran stubtest anyway for distributions that didn't include `linux` as a supported platform. Rearrange things: * The `--specified-platforms-only` now works consistently on all platforms. Previously, it was ignored on Linux. * Instead, in CI the flag is added only for non-Linux platforms. * The note about stubtest not running for a certain platform in CI is now printed only after stubtest tested a distribution successfully to avoid breaking the output. Closes: python#13641
Nothing broke in CI. |
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.
On Windows, running python .\tests\runtests.py --run-stubtest .\stubs\JACK-Client\
Now it sounds like I'm supposed to modify METADATA.toml
, whereas the previous message was much clearer about expectations: it's just not tested on the CI on my platform (for speed/resources reasons), but I can still run the tests, and in this case, I should as it is a library meant for all platform.
Given how runtests.py
requires an explicit opt-in to run stubtest, I'd also expect it to try and run stubtest, even if the platform is not specified.
@Avasam This should be fixed now. Maybe we should also rename |
Ok, the problem is that we don't differentiate between "stubtest platforms that this can't run on" and "stubtest platforms this should be tested on in CI. We should split this into two fields: |
Under the idea that we're trying to encode two different information under the same setting, it would make sense to split. If we split to differentiate, I'd rename
We could also optionally have an extra metadata check that Off the top of my head, pywin32 and python-xlib are some of the stubs needing that distinction. I'll also add that, to my understanding, the distinction only matters locally to get a better error message than:
ie: something like: |
I opened #13746, which splits the key, and replaces this PR. |
Previously, when running it on Linux without the
--specified-platforms-only
flag, it printed spurious warnings and ran stubtest anyway for distributions that didn't includelinux
as a supported platform.Rearrange things:
--specified-platforms-only
flag now works consistently on all platforms. Previously, it was ignored on Linux.Closes: #13641