validate
validate
¶
Validate command for Marianne CLI.
This module implements the mzt validate command for comprehensive
configuration validation before score execution.
★ Insight ───────────────────────────────────── 1. Multi-layer validation: The validate command performs 3 distinct validation layers: YAML syntax (parseable), Pydantic schema (structural), and extended checks (semantic). Each layer catches different classes of errors.
-
Exit code convention: Exit codes follow a convention (0=valid, 1=errors, 2=cannot parse). This enables CI/CD integration where scripts can differentiate between "has validation errors" vs "cannot even validate" scenarios.
-
DAG visualization: When sheet dependencies are configured, the command visualizes the execution graph. This helps users understand parallel execution potential and identify dependency bottlenecks. ─────────────────────────────────────────────────
Classes¶
Functions¶
validate
¶
validate(config_file=Argument(..., help='Path to YAML score configuration file', exists=True, readable=True), json_output=Option(False, '--json', '-j', help='Output validation results as JSON'), verbose=Option(False, '--verbose', '-v', help='Show detailed validation output'))
Validate a score configuration file.
Performs comprehensive validation including: - YAML syntax and Pydantic schema validation - Jinja template syntax checking - Path existence verification - Regex pattern compilation - Configuration completeness checks
Exit codes
0: Valid (warnings/info OK) 1: Invalid (one or more errors) 2: Cannot validate (file not found, YAML unparseable)
Source code in src/marianne/cli/commands/validate.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |