mirror of
https://github.com/Z3Prover/z3
synced 2026-07-29 02:03:49 +00:00
Fix build-pyodide: correct z3test.py path in cibuildwheel test-command (#10263)
The `build-pyodide` CI job was failing because cibuildwheel's
`{project}` placeholder resolves to the **repository root**, not the
`package-dir` (`src/api/python`). The `test-command` in `pyproject.toml`
referenced `{project}/z3test.py`, which doesn't exist at the repo root.
## Change
**`src/api/python/pyproject.toml`**
```diff
-test-command = "python {project}/z3test.py z3"
+test-command = "python {project}/src/api/python/z3test.py z3"
```
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
parent
d652bd3fc6
commit
67ab221dba
1 changed files with 1 additions and 1 deletions
|
|
@ -26,4 +26,4 @@ build = "cp314-*"
|
|||
|
||||
[tool.cibuildwheel.pyodide]
|
||||
# z3test.py is the upstream smoke test; run it inside the Pyodide test venv.
|
||||
test-command = "python {project}/z3test.py z3"
|
||||
test-command = "python {project}/src/api/python/z3test.py z3"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue