🔧 chore(test): consolidate playbook config tests

Group playbook.toml-driven behavior tests under a single config-actions file and split parser/template contract coverage into focused files.

Remove obsolete PowerShell audit scripts and tracked validation reports; write template validation reports under reports/templates.
This commit is contained in:
csh
2026-06-26 18:08:04 +08:00
parent 1911d2dda3
commit 9efd0a581f
18 changed files with 458 additions and 1017 deletions
+3 -1
View File
@@ -14,9 +14,11 @@ TEMPLATES_DIR="$PLAYBOOK_ROOT/templates/python"
VALIDATION_PASSED=0
VALIDATION_FAILED=0
ERRORS_FILE="/tmp/python_template_validation_errors.txt"
REPORT_FILE="$SCRIPT_DIR/python_validation_report.txt"
REPORT_DIR="$PLAYBOOK_ROOT/reports/templates"
REPORT_FILE="$REPORT_DIR/python_validation_report.txt"
> "$ERRORS_FILE"
mkdir -p "$REPORT_DIR"
> "$REPORT_FILE"
echo "📁 模板目录: $TEMPLATES_DIR"