We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b7641 commit 3b39d48Copy full SHA for 3b39d48
test/conftest.py
@@ -151,11 +151,13 @@ def docker_warmup_fixture(
151
return None
152
153
154
-@pytest.fixture(params=["pip", "build"])
+@pytest.fixture(params=["pip", "build", "uv"])
155
def build_frontend_env_nouv(request: pytest.FixtureRequest) -> dict[str, str]:
156
frontend = request.param
157
- if get_platform() == "pyodide" and frontend == "pip":
158
- pytest.skip("Can't use pip as build frontend for pyodide platform")
+ if get_platform() == "pyodide" and frontend in {"pip", "uv"}:
+ pytest.skip("Can't use pip or uv as build frontend for pyodide platform")
159
+ if frontend == "uv" and find_uv() is None:
160
+ pytest.skip("Can't find uv")
161
162
return {"CIBW_BUILD_FRONTEND": frontend}
163
0 commit comments