[build] delete .skipped-tests file entries#17613
Conversation
Review Summary by QodoRemove .skipped-tests file and CI build script reference
WalkthroughsDescription• Remove .skipped-tests file containing hardcoded test exclusions • Simplify CI build script by eliminating test deselection logic • Remove unnecessary shellcheck disable comment from build script • Tests should use skip-rbe tags or guards instead Diagramflowchart LR
A["CI Build Script"] -->|previously used| B[".skipped-tests file"]
B -->|contained| C["26 test exclusions"]
A -->|now simplified| D["Direct test execution"]
E["Future approach"] -->|use| F["skip-rbe tags or guards"]
File Changes1. scripts/github-actions/ci-build.sh
|
Code Review by Qodo
1. Deleted .skipped-tests breaks CI
|
|
Code review by qodo was updated up to the latest commit fb69818 |
💥 What does this PR do?
Removes the.skipped-testsdeselection list and the reference to it in the RBE CI build script.I still think we shouldn't use this, but there's no harm keeping it and just removing references we don't need for now.
We should either tag targets as skip-rbe or guard them against RBE runs in test runners going forward
🔧 Implementation Notes
I didn't have to fix anything everything passes with the simple deletion.
🤖 AI assistance
🔄 Types of changes