Commit e98df8a
Fix CI failure with tox 4.56 by setting skip_missing_interpreters = true (#1033)
## Summary
Supersedes #1026 (Renovate update of tox 4.55.1 -> 4.56.1), whose CI is
failing.
tox 4.56.0 changed the default of `skip_missing_interpreters` back to
`false` (tox-dev/tox#3966).
The `build` job in `.github/workflows/auto-testing.yml` is a matrix
where each runner installs only a single Python version and then runs
plain `tox`, so all envs for interpreters not installed on that runner
(e.g. `py3.10` on the 3.11 runner) now fail with "could not find python
interpreter" instead of being skipped.
This PR adds `skip_missing_interpreters = true` to the `[tox]` section
of `tox.ini` to restore the previous behavior.
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent f3726ec commit e98df8a
2 files changed
Lines changed: 5 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
| 3 | + | |
5 | 4 | | |
6 | 5 | | |
7 | 6 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
2 | 6 | | |
3 | 7 | | |
4 | 8 | | |
| |||
0 commit comments