Run from repo root.
bash scripts/wheel_build.sh- Builds the console frontend (
console/), copiesconsole/disttosrc/copaw/console/dist, then builds the wheel. Output:dist/*.whl.
bash scripts/website_build.sh- Installs dependencies (pnpm or npm) and runs the Vite build. Output:
website/dist/.
bash scripts/docker_build.sh [IMAGE_TAG] [EXTRA_ARGS...]- Default tag:
copaw:latest. Usesdeploy/Dockerfile(multi-stage: builds console then Python app). - Example:
bash scripts/docker_build.sh myreg/copaw:v1 --no-cache.
# Run all tests
python scripts/run_tests.py
# Run all unit tests
python scripts/run_tests.py -u
# Run unit tests for a specific module
python scripts/run_tests.py -u providers
# Run integration tests
python scripts/run_tests.py -i
# Run all tests and generate a coverage report
python scripts/run_tests.py -a -c
# Run tests in parallel (requires pytest-xdist)
python scripts/run_tests.py -p
# Show help
python scripts/run_tests.py -h