-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
define matrices that vary both the python version and the dependency version #1613
Comments
please enumerate the exact environments you want with which dependencies |
Thanks for the fast response. I would like to test on the following environments:
Here is my current configuration in
This results in four runs of the test suite. I would like to have just two. |
the condition should be based on the Python version |
Thanks, I should have thought of that. For posterity, here's what worked for me.
|
I am able to define matrices for testing on different Python versions. I am also able to define a matrix for testing using different dependency versions using the approach described in this issue. However, using both at once results in a large number of combinations that slows down my pipeline. How would I test on Python 3.8 with
pydantic<2
and on Python 3.12 withpydantic>=2.0.0
with only two runs of my test suite?The text was updated successfully, but these errors were encountered: