1717from ddev .cli .validate .all .orchestrator import ValidationConfig , ValidationResult
1818
1919CONFIGS = {
20- "ci" : ValidationConfig (description = "Validate CI configuration and Codecov settings" , repo_wide = True ),
20+ "ci" : ValidationConfig (description = "Validate CI configuration and code coverage settings" , repo_wide = True ),
2121 "config" : ValidationConfig (description = "Validate default configuration files against spec.yaml" ),
2222 "metadata" : ValidationConfig (description = "Validate metadata.csv metric definitions" ),
2323}
@@ -134,7 +134,7 @@ def test_format_pr_comment_all_passed(helpers):
134134
135135 | Validation | Description | Status |
136136 |---|---|---|
137- | `ci` | Validate CI configuration and Codecov settings | ✅ |
137+ | `ci` | Validate CI configuration and code coverage settings | ✅ |
138138 | `config` | Validate default configuration files against spec.yaml | ✅ |
139139
140140 </details>""" )
@@ -160,7 +160,7 @@ def test_format_pr_comment_one_failure_with_target(helpers):
160160
161161 | Validation | Description | Status |
162162 |---|---|---|
163- | `ci` | Validate CI configuration and Codecov settings | ✅ |
163+ | `ci` | Validate CI configuration and code coverage settings | ✅ |
164164
165165 </details>""" )
166166 assert format_pr_comment (results , CONFIGS , "changed" , list (results )) == expected
@@ -266,7 +266,7 @@ def test_format_step_summary_all_passed(helpers):
266266
267267 | Validation | Description | Status |
268268 |---|---|---|
269- | `ci` | Validate CI configuration and Codecov settings | ✅ |
269+ | `ci` | Validate CI configuration and code coverage settings | ✅ |
270270 | `config` | Validate default configuration files against spec.yaml | ✅ |""" )
271271 assert format_step_summary (results , CONFIGS , "changed" , list (results )) == expected
272272
@@ -281,7 +281,7 @@ def test_format_step_summary_with_failures(helpers):
281281
282282 | Validation | Description | Status |
283283 |---|---|---|
284- | `ci` | Validate CI configuration and Codecov settings | ✅ |
284+ | `ci` | Validate CI configuration and code coverage settings | ✅ |
285285 | `config` | Validate default configuration files against spec.yaml | ❌ |
286286
287287 Run `ddev validate all changed --fix` to attempt to auto-fix supported validations.""" )
0 commit comments