Add CI testing against Python beta versions #18
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The noxfile already defines BETA_PYTHONS = ["3.15", "3.15t"] and a pytest_betas session, but there is no CI step that invokes it. Add a dedicated pytest_betas step to .woodpecker/checks.yml (with failure: ignore) so beta failures surface without blocking the pipeline.
noxfile.py already has the pytest_betas session targeting Python 3.15 and 3.15t (following the same pattern as zaojun). The only change needed is in .woodpecker/checks.yml: add a pytest_betas step after the checks step, using failure: ignore so beta failures are visible but don't block the pipeline. Files to change: .woodpecker/checks.yml (new step), noxfile.py (include in commit per TODO requirement), TODO.md (mark #6 done).