Skip to content
Draft
8 changes: 8 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,14 @@ def run_ci_historic_benchmark():
build_wheel(python_bin, qdk_python_src, env=pip_env, maturin=True)
step_end()

if args.check:
step_start("Checking qdk public API surface for private type leakage")
run(
[python_bin, os.path.join(qdk_python_src, "check_api_surface.py")],
cwd=qdk_python_src,
)
step_end()

if run_tests:
step_start("Running tests for the qdk python package")
# Install per-package test requirements (pytest, etc.)
Expand Down
Loading
Loading