separate smoke coverage into core backend checks and pricing publish flow checks make regression runs more focused and easier to maintain improve troubleshooting when a smoke stage fails
16 lines
353 B
Bash
Executable File
16 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
echo "===== smoke core ====="
|
|
bash "${SCRIPT_DIR}/smoke_core.sh"
|
|
|
|
echo
|
|
echo "===== smoke pricing/publish ====="
|
|
bash "${SCRIPT_DIR}/smoke_pricing_publish.sh"
|
|
|
|
echo
|
|
echo "===== done ====="
|
|
echo "[OK] smoke regression orchestration completed successfully"
|