fix(concurrency): run ruff format to fix E303 violations
CI / benchmark-publish (pull_request) Has been skipped
CI / lint (pull_request) Successful in 1m4s
CI / typecheck (pull_request) Successful in 1m15s
CI / helm (pull_request) Successful in 36s
CI / build (pull_request) Successful in 51s
CI / quality (pull_request) Successful in 1m14s
CI / push-validation (pull_request) Successful in 23s
CI / security (pull_request) Successful in 1m35s
CI / e2e_tests (pull_request) Successful in 3m50s
CI / integration_tests (pull_request) Successful in 4m1s
CI / unit_tests (pull_request) Successful in 5m8s
CI / docker (pull_request) Successful in 1m28s
CI / coverage (pull_request) Successful in 9m30s
CI / status-check (pull_request) Successful in 4s
CI / benchmark-regression (pull_request) Successful in 57m23s

Ruff format cleaned up 3 consecutive blank lines in
validation_pipeline_steps.py and added a missing blank line
in validation_pipeline_output_steps.py.

ISSUES CLOSED: #7811
This commit is contained in:
2026-04-30 06:15:56 +00:00
parent e019abfb20
commit cef02bbd4c
2 changed files with 1 additions and 3 deletions
@@ -62,6 +62,7 @@ def step_then_result_positive_duration(context: Any, name: str) -> None:
f"Expected duration_ms > 0 for '{name}', got {result.duration_ms}"
)
@then(r"the plan metadata contains validation_summary")
def step_then_plan_metadata_has_summary(context: Any) -> None:
assert context.vp_plan_metadata is not None
@@ -469,9 +469,6 @@ def step_then_group_result_count(context: Any, resource: str, count: str) -> Non
assert actual == cnt, f"Expected {cnt} results for '{resource}', got {actual}"
# Reset to default parse matcher
use_step_matcher("parse")