Skip to content
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

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

srittau
Copy link
Collaborator

@srittau srittau commented Mar 17, 2025

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 flag 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: #13641

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
@srittau
Copy link
Collaborator Author

srittau commented Mar 17, 2025

Nothing broke in CI.

Copy link
Collaborator

@Avasam Avasam left a 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\

Before:
image

After:
image

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.

@srittau
Copy link
Collaborator Author

srittau commented Mar 28, 2025

@Avasam This should be fixed now. Maybe we should also rename platforms to ci_platforms to make it clearer that this should only have effect when testing in CI.

@srittau
Copy link
Collaborator Author

srittau commented Mar 28, 2025

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: platforms, which defaults to ["linux", "darwin", "win32"] and ci_platforms, which defaults to ["linux"] and the rename --specified-platforms-only to --ci-platforms-only. Thoughts?

@Avasam
Copy link
Collaborator

Avasam commented Mar 28, 2025

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 platforms to supported_platforms.

supported_platforms would default to "all" if not provided.
ci_platforms would default to ["linux"] if not provided (same as the current behaviour)

We could also optionally have an extra metadata check that ci_platforms is a subset of supported_platforms.

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:

Failed to install
ERROR: Could not find a version that satisfies the requirement pywin32==310.* (from versions: none)
ERROR: No matching distribution found for pywin32==310.*

ie: something like:
"This test won't run because we identified the stubs as only being for [supported_platforms], but you are currently on 'platform'"

@srittau srittau marked this pull request as draft March 31, 2025 11:31
@srittau
Copy link
Collaborator Author

srittau commented Mar 31, 2025

I opened #13746, which splits the key, and replaces this PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Do we need --specified-platforms-only in stubtest_third_party?
2 participants