[Agent] [Chore] Clean coverage artifacts and restore formatter baseline#305
Merged
[Agent] [Chore] Clean coverage artifacts and restore formatter baseline#305
Conversation
Contributor
Contributor
There was a problem hiding this comment.
Pull request overview
This PR restores repository hygiene by ignoring/removing stray coverage artifacts and re-applying the Black formatter baseline so black --check . is clean again.
Changes:
- Add
/.coverage*to.gitignoreand remove tracked.coverage.*files. - Apply Black-only formatting normalization across tests, scripts, and source files.
- Minor whitespace-only cleanup (e.g., trailing blank lines) in a few tests.
Reviewed changes
Copilot reviewed 25 out of 29 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.gitignore |
Ignores .coverage* artifacts so they aren’t re-committed. |
.coverage.runnervmnay03.pid5811.XIBGM8Kx.HQsfEMlJuHGh |
Removes tracked coverage artifact from git history going forward. |
.coverage.runnervmnay03.pid5808.Xif2iyox.HxFiMg0sjQ2h |
Removes tracked coverage artifact from git history going forward. |
.coverage.runnervmnay03.pid5805.XQ6K8i8x.HIUQ70HoAQsh |
Removes tracked coverage artifact from git history going forward. |
scripts/build_runner_workbook.py |
Black formatting normalization only. |
src/counter_risk/chat/providers/base.py |
Black formatting normalization only. |
src/counter_risk/chat/session.py |
Black formatting normalization only. |
src/counter_risk/cli/__init__.py |
Black formatting normalization only. |
src/counter_risk/mosers/template.py |
Black formatting normalization only. |
src/counter_risk/parsers/repo_cash_sources.py |
Black formatting normalization only. |
src/counter_risk/pipeline/run.py |
Black formatting normalization only. |
src/counter_risk/runner_launch.py |
Black formatting normalization only. |
src/counter_risk/writers/historical_update.py |
Black formatting normalization only. |
tests/integration/test_cli_run.py |
Black formatting normalization only. |
tests/spec/test_macro_spec_doc.py |
Black formatting normalization only. |
tests/spec/test_macro_spec_fixtures.py |
Black formatting normalization only. |
tests/test_fixtures_smoke.py |
Black formatting normalization only. |
tests/test_futures_delta.py |
Black formatting normalization only. |
tests/test_mosers_all_programs_output_structure.py |
Removes trailing whitespace/blank line; no logic change. |
tests/test_mosers_ex_trend_output_structure.py |
Removes trailing whitespace/blank line; no logic change. |
tests/test_mosers_trend_output_structure.py |
Removes trailing whitespace/blank line; no logic change. |
tests/test_mosers_workbook.py |
Black formatting normalization only. |
tests/test_nisa_all_programs_parser.py |
Black formatting normalization only. |
tests/test_nisa_parser.py |
Black formatting normalization only. |
tests/test_runner_launch.py |
Black formatting normalization only (incl. wrapped annotations/defs). |
tests/test_runner_vba_module.py |
Black formatting normalization only. |
tests/test_validate_release_workflow_yaml.py |
Black formatting normalization only. |
tests/test_vba_module_inventory.py |
Black formatting normalization only. |
tests/test_vba_runnerlaunch_signature.py |
Black formatting normalization only. |
Contributor
🤖 Keepalive Loop StatusPR #305 | Agent: Codex | Iteration 0/5 Current State
🔍 Failure Classification| Error type | infrastructure | |
Contributor
Keepalive Work Log (click to expand)
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Two repository hygiene regressions are still present on
main:.coverage.*artifacts are committed.black --check .to fail.This PR removes those regressions so the repository baseline is clean again.
What Changed
/.coverage*to.gitignore..coverage.*artifacts from git.black .to normalize formatting across files currently out of sync with the formatter baseline.Validation
black --check .ruff check .pytest -q tests/test_counter_risk_cli.py tests/test_chat_session.py tests/test_runner_launch.pyNotes
.gitignoreare formatter-only.