master
2 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
ac74edd175 |
fix(auto_debug): align test expectation with fail-safe LLM exception handling
CI / lint (pull_request) Successful in 59s
CI / typecheck (pull_request) Successful in 1m16s
CI / quality (pull_request) Successful in 54s
CI / security (pull_request) Successful in 1m10s
CI / build (pull_request) Successful in 34s
CI / push-validation (pull_request) Successful in 35s
CI / helm (pull_request) Successful in 40s
CI / unit_tests (pull_request) Successful in 5m2s
CI / docker (pull_request) Successful in 1m30s
CI / integration_tests (pull_request) Successful in 9m8s
CI / coverage (pull_request) Successful in 9m18s
CI / status-check (pull_request) Successful in 5s
CI / lint (push) Successful in 52s
CI / build (push) Successful in 50s
CI / quality (push) Successful in 55s
CI / typecheck (push) Successful in 1m1s
CI / security (push) Successful in 1m4s
CI / push-validation (push) Successful in 24s
CI / helm (push) Successful in 56s
CI / unit_tests (push) Successful in 4m50s
CI / docker (push) Successful in 1m32s
CI / integration_tests (push) Successful in 8m29s
CI / coverage (push) Successful in 9m35s
CI / status-check (push) Successful in 3s
CI / benchmark-publish (push) Has been cancelled
CI / benchmark-regression (push) Has been cancelled
The _validate_fix BDD scenario "Validate fix handles LLM invocation failure gracefully" was asserting fix_validated=True (fail-open), but the code already sets is_valid=False on LLM exception (fail-safe). Update the scenario step to "the fix should not be marked as validated" and remove the pragma: no cover comment since this branch is now exercised by the test. ISSUES CLOSED: #10496 |
||
|
|
051ee7c290 |
test(coverage): add Behave BDD tests to improve coverage across 52 source files
CI / benchmark-publish (pull_request) Has been skipped
CI / lint (pull_request) Successful in 21s
CI / quality (pull_request) Successful in 31s
CI / typecheck (pull_request) Successful in 47s
CI / security (pull_request) Successful in 52s
CI / build (pull_request) Successful in 56s
CI / e2e_tests (pull_request) Successful in 5m1s
CI / integration_tests (pull_request) Successful in 5m30s
CI / unit_tests (pull_request) Successful in 5m42s
CI / docker (pull_request) Successful in 58s
CI / coverage (pull_request) Successful in 7m35s
CI / build (push) Successful in 21s
CI / docker (push) Has been skipped
CI / benchmark-regression (pull_request) Failing after 49m24s
CI / lint (push) Successful in 22s
CI / quality (push) Successful in 39s
CI / security (push) Successful in 48s
CI / typecheck (push) Successful in 1m26s
CI / benchmark-regression (push) Has been skipped
CI / e2e_tests (push) Successful in 5m53s
CI / coverage (push) Successful in 9m4s
CI / benchmark-publish (push) Successful in 19m10s
CI / integration_tests (push) Failing after 19m18s
CI / unit_tests (push) Failing after 19m20s
Added 52 new .feature files and corresponding _steps.py files targeting previously uncovered code paths in the following areas: - TUI layer: app, commands, persona (state/schema/registry), widgets, input (shell_exec, reference_parser) - Application services: plan lifecycle/service/executor, session, project, repo indexing, correction, checkpoint, actor, llm_actors, strategy coordinator, resource file watcher, service retry wiring - CLI commands: session, resource, repl, plan, db, automation_profile - Domain models: retry_policy, resource_type, cost_budget, docker_compose_analyzer, detail_level, _sql_string_aware, _postgresql_helpers - Core: circuit_breaker, retry_service_patterns - Infrastructure: repositories, transaction_sandbox, strategy_registry, plugins/loader, container - Config: settings - Agents: plan_generation, context_analysis, auto_debug - A2A: facade All new tests follow the Behave/Gherkin BDD standard. Resolved step definition collisions with unique prefixes. Fixed Alembic fileConfig logger disabling issue (disable_existing_loggers=False). ISSUES CLOSED: #1068 |