mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- Fix kube context switching for k3s single-context kubeconfigs and k3d shorthand prefixes - Update common init/status scripts (registry, kerberos, cnpg backup, service layer, common services) - Add Gitea init script and installer ArgoCD screen - Add Supabase realtime probe patching plus regression tests - Extend installer core/UI test coverage
16 lines
498 B
Bash
Executable File
16 lines
498 B
Bash
Executable File
#!/bin/bash
|
|
# Run the Prole installer with execution instrumentation (coverage)
|
|
# This helps identify unused code paths during manual testing/usage.
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PYTHON="$SCRIPT_DIR/bin/python"
|
|
|
|
export PYTHONPATH="$SCRIPT_DIR:${PYTHONPATH:-}"
|
|
|
|
"$PYTHON" -m coverage run "$SCRIPT_DIR/install.py" "$@"
|
|
"$PYTHON" -m coverage report -m
|
|
"$PYTHON" -m coverage html
|
|
echo "Execution instrumentation report generated in $SCRIPT_DIR/htmlcov/index.html"
|