-
Notifications
You must be signed in to change notification settings - Fork 287
feat: support uv with Android #2587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 9 commits
4b023db
5ca7157
bb20a8e
b05351d
f83b500
48ca3d7
a14e192
1f1db32
a0350fa
d1bc6a3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,16 +103,16 @@ def test_expected_wheels(tmp_path): | |
) | ||
|
||
|
||
def test_frontend_good(tmp_path): | ||
def test_frontend_good(tmp_path, build_frontend_env): | ||
new_c_project().generate(tmp_path) | ||
wheels = cibuildwheel_run( | ||
tmp_path, | ||
add_env={**cp313_env, "CIBW_BUILD_FRONTEND": "build"}, | ||
add_env={**cp313_env, **build_frontend_env, "CIBW_TEST_COMMAND": "python -m site"}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tests with a test command need to be decorated with
|
||
) | ||
assert wheels == [f"spam-0.1.0-cp313-cp313-android_21_{native_arch.android_abi}.whl"] | ||
|
||
|
||
@pytest.mark.parametrize("frontend", ["build[uv]", "pip"]) | ||
@pytest.mark.parametrize("frontend", ["pip"]) | ||
def test_frontend_bad(frontend, tmp_path, capfd): | ||
new_c_project().generate(tmp_path) | ||
with pytest.raises(CalledProcessError): | ||
|
Uh oh!
There was an error while loading. Please reload this page.