fix: android tests using the uv frontend (#2809)

Moving the tests to run cibuildwheel with Python 3.14 allow to see the failure.
This commit is contained in:
Matthieu Darbois
2026-04-05 22:30:52 -05:00
committed by GitHub
parent 314d2268ab
commit e2027266cd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ jobs:
- os: ubuntu-latest
python_version: '3.14'
- os: ubuntu-latest
python_version: '3.13'
python_version: '3.14'
test_select: android
- os: ubuntu-24.04-arm
python_version: '3.13'
+1 -1
View File
@@ -632,7 +632,7 @@ def test_wheel(state: BuildState, wheel: Path, *, build_frontend: str) -> None:
return
log.step("Testing wheel...")
use_uv = build_frontend == "build[uv]"
use_uv = build_frontend in {"build[uv]", "uv"}
uv_path = find_uv()
if use_uv and uv_path is None:
msg = "uv not found"