Skip to content

Commit

Permalink
XXX: Test only graalpy in my CI
Browse files Browse the repository at this point in the history
  • Loading branch information
timfel committed Sep 16, 2024
1 parent 01ee712 commit af2922a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def build_frontend_env_nouv(request: pytest.FixtureRequest) -> dict[str, str]:
if platform == "pyodide" and frontend == "pip":
pytest.skip("Can't use pip as build frontend for pyodide platform")

return {"CIBW_BUILD_FRONTEND": frontend}
return {"CIBW_BUILD": "gp*", "CIBW_BUILD_FRONTEND": frontend}


@pytest.fixture
Expand All @@ -43,7 +43,7 @@ def build_frontend_env(build_frontend_env_nouv: dict[str, str]) -> dict[str, str
if frontend != "build" or platform == "pyodide" or find_uv() is None:
return build_frontend_env_nouv

return {"CIBW_BUILD_FRONTEND": "build[uv]"}
return {"CIBW_BUILD": "gp*", "CIBW_BUILD_FRONTEND": "build[uv]"}


@pytest.fixture
Expand Down

0 comments on commit af2922a

Please sign in to comment.