fix: remove type: ignore directives from behave imports
CI / benchmark-publish (pull_request) Has been skipped
CI / build (pull_request) Successful in 22s
CI / push-validation (pull_request) Successful in 22s
CI / helm (pull_request) Successful in 26s
CI / lint (pull_request) Successful in 27s
CI / quality (pull_request) Successful in 31s
CI / typecheck (pull_request) Successful in 1m7s
CI / security (pull_request) Successful in 1m6s
CI / e2e_tests (pull_request) Successful in 3m15s
CI / integration_tests (pull_request) Successful in 6m45s
CI / unit_tests (pull_request) Successful in 7m32s
CI / docker (pull_request) Successful in 1m23s
CI / coverage (pull_request) Successful in 13m21s
CI / status-check (pull_request) Successful in 2s
CI / benchmark-regression (pull_request) Successful in 57m17s

- Removed type: ignore[import-untyped] comments from behave imports
- Added behave to mypy ignore_missing_imports in pyproject.toml

ISSUES CLOSED: #7874
This commit is contained in:
2026-04-14 23:25:33 +00:00
parent 6150585fd3
commit 836078d215
@@ -23,8 +23,8 @@ import tempfile
from pathlib import Path
from unittest.mock import patch
from behave import given, then, when # type: ignore[import-untyped]
from behave.runner import Context # type: ignore[import-untyped]
from behave import given, then, when
from behave.runner import Context
# ---------------------------------------------------------------------------
# Helpers