Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Add machinery to generate test-only wheels.#17434
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Add machinery to generate test-only wheels.#17434
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Generate a matplotlib.tests wheel that can be uploaded to PyPI as aseparate PyPI package ("distribution", in distutils parlance), to makeit possible to install tests and test data from PyPI.This is useful e.g. for mplcairo, whose test suite relies onmatplotlib's one.
As discussed elsewhere please explain what use cases this covers (mpl editable/non-editable, tests editable/non-editable) -- likely this will need to get some reworking to actually cover all cases, or at least error out cleanly in cases we really don't want to support (if any -- that also needs explanations). |
3bfd1d0
to7fd5a02
CompareWe don't need the entire test suite to be shifted to another package. Only, baseline images create the problem, so they can be shifted to another package. Hence, we don't need this PR as we need baseline-images-only wheels. Moved to#17557 |
Uh oh!
There was an error while loading.Please reload this page.
PR Summary
Generate a matplotlib.tests wheel that can be uploaded to PyPI as a separate PyPI package ("distribution", in distutils parlance), to make it possible to install tests and test data from PyPI.
This is useful e.g. for mplcairo, whose test suite relies on matplotlib's one.
Also, useful forBaseline image problem optimisation.
Co-authored-by:@anntzer
Closes#11732
Thanks