You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skip all but default python version on docs_snippets, automation tests (#25467)
## Summary & Motivation
The `docs_snippets`, `docs_snippets_beta`, and `automation` packages all
install large numbers of dagster packages in the same environment. This
can sometimes cause second-order dependency collisions, particularly in
older python versions. We reduce the likelihood of this occurring by
only testing these packages against the default python version.
- In the case of `automation`, this is not a problem because
`automation` code only runs internally.
- For `docs_snippets` and `docs_snippets_beta`, the loss in coverage is
minimal since all the dagster code actually targeted by our snippets is
tested on all (compatible) versions.
## How I Tested These Changes
Existing test suite, with `test-all` to make sure the full suite (all
specified versions) are tested in the branch build.
0 commit comments