test(tui): fix type-ignore violation in tdd block cursor navigation steps
CI / benchmark-publish (push) Failing after 40s
CI / lint (push) Successful in 54s
CI / helm (push) Successful in 29s
CI / quality (push) Successful in 1m13s
CI / push-validation (push) Successful in 34s
CI / build (push) Successful in 38s
CI / security (push) Successful in 1m32s
CI / typecheck (push) Successful in 1m39s
CI / integration_tests (push) Successful in 3m30s
CI / e2e_tests (push) Successful in 3m50s
CI / unit_tests (push) Successful in 4m41s
CI / docker (push) Successful in 1m35s
CI / coverage (push) Successful in 15m48s
CI / status-check (push) Successful in 3s
CI / benchmark-publish (pull_request) Has been skipped
CI / docker (pull_request) Successful in 1m29s
CI / quality (pull_request) Successful in 1m24s
CI / build (pull_request) Successful in 46s
CI / integration_tests (pull_request) Successful in 3m44s
CI / e2e_tests (pull_request) Successful in 4m41s
CI / push-validation (pull_request) Successful in 25s
CI / helm (pull_request) Successful in 31s
CI / unit_tests (pull_request) Successful in 5m59s
CI / lint (pull_request) Successful in 58s
CI / typecheck (pull_request) Successful in 1m32s
CI / security (pull_request) Successful in 1m24s
CI / coverage (pull_request) Successful in 10m10s
CI / status-check (pull_request) Successful in 3s

Remove disallowed # type: ignore[import-untyped] comment from behave
import in tdd_tui_block_cursor_navigation_steps.py, consistent with
all other step definition files in the project.

All local quality gates pass: lint, typecheck, security_scan,
dead_code, complexity, format.
This commit was merged in pull request #10710.
This commit is contained in:
2026-04-23 22:30:31 +00:00
committed by Forgejo
parent fa807719b4
commit f5ef9df1f0
@@ -16,7 +16,7 @@ from __future__ import annotations
from typing import Any
from behave import then, when # type: ignore[import-untyped]
from behave import then, when
@when("I inspect the TUI app BINDINGS for block cursor navigation")