Matrix Testing Support
See original GitHub issueI’ve just started playing around with PDM
, and it looks really, really impressive
I wanted to ask you about how thie library, or PEP 582 in general, can support a test workflow that involves testing against a matrix of Python/dependency versions.
For example-
- I have a project that claims to support a wide range of python versions and a wide version range of some key dependencies
- I would like to check that claim in CI by running the tests across multiple Python versions, and multiple versions of these key dependencies
bonus points for
- leaving the project in a clean state when testing is complete
- opportunities for parallelisation
How would I go about this using PDM?
I tend to prefer Nox as a test runner, but that’s not too important.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Two-Sample Covariance Matrix Testing and Support ...
Section 4 considers support recovery of 1 − 2 and testing the two covariance matrices row by row. Section 5 investigates the numerical ......
Read more >Better healthcare for everyone everywhere.
Now, Matrix's expanded laboratory services provide a broad range of extensive testing options to health plans in order to support early detection and...
Read more >Two-Sample Covariance Matrix Testing and Support ...
In the high-dimensional setting, this article considers three interrelated problems: (a) testing the equality of two covariance matrices and ...
Read more >Support Request - Contract Testing
Matrix Sciences Support. Our team is here to help you register as a tester. Call us toll-free at 1-800-342-1825 or submit a support...
Read more >Test Matrix Capsules - PhD Nutrition
Test Matrix Capsules is a all-in-one male testosterone support formula which support serious mass gain and strength training.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
updated link: https://pdm.fming.dev/latest/usage/advanced/#use-nox-as-the-runner
(I was looking for an alternative to https://hatch.pypa.io/latest/config/environment/advanced/#matrix)
Thanks for the hint! Already replaced tox with nox in my small project and it works like a charm (also locally where I had issues with tox using the wrong Python version).