f808abff86
Fix JSON syntax errors in .devcontainer/devcontainer.json (removed
invalid JS-style // comments) and .devcontainer/opencode.json (removed
90+ trailing commas). Apply auto-fixes for end-of-file and trailing
whitespace issues across 100+ files. Fix SIM105 ruff violations in
benchmarks/core_circuit_breaker_bench.py (use contextlib.suppress).
Note: The security fix from issue #7478 (validate_path startswith bypass)
was already delivered to master in commit e18ac5f2. This PR as currently
structured is non-atomic (35 commits across 10+ issues) and needs
significant restructure before merge. This commit only addresses the
CI/pre-commit failures.
ISSUES CLOSED: #7478
11 lines
360 B
Gherkin
11 lines
360 B
Gherkin
Feature: Complete Main Module Coverage
|
|
As a developer
|
|
I want to achieve 100% coverage for the __main__ module
|
|
So that all code paths are tested
|
|
|
|
@coverage
|
|
Scenario: Test actual if __name__ == "__main__" execution
|
|
When I run the __main__ module as a script with --version
|
|
Then the version should be displayed
|
|
And the exit code should be 0
|