Android test updates (#2575)

* Install the test environment while simulating Android

* Pass build-verbosity setting through to the test runner
This commit is contained in:
Malcolm Smith
2025-09-08 15:58:43 +01:00
committed by GitHub
parent 841e718dee
commit c8fb268a1b
3 changed files with 70 additions and 1 deletions
+2 -1
View File
@@ -589,7 +589,7 @@ def test_wheel(state: BuildState, wheel: Path) -> None:
site_packages_dir,
f"{wheel}{state.options.test_extras}",
*state.options.test_requires,
env=state.build_env,
env=state.android_env,
)
# Copy test-sources.
@@ -641,6 +641,7 @@ def test_wheel(state: BuildState, wheel: Path) -> None:
site_packages_dir,
"--cwd",
cwd_dir,
*(["-v"] if state.options.build_verbosity > 0 else []),
*test_args,
env=state.build_env,
)