[NA] [GHA] chore: remove three permanently failing scheduled workflows - #7606
Closed
jverre wants to merge 1 commit into
Closed
[NA] [GHA] chore: remove three permanently failing scheduled workflows#7606jverre wants to merge 1 commit into
jverre wants to merge 1 commit into
Conversation
Delete quickstart_guide_snippets_test.yml, test_docs_links.yml and documentation_cookbook_tests.yml. All three have been failing 100/100 of their last runs since the Python E2E test retirement (#4731) deleted the test suites they invoke. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Contributor
⏱️ pre-commit per-hook timingNo linted files changed — nothing to run. ⏭️ 41 skipped (no matching files changed)
|
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.
Details
Deletes three scheduled workflows that have been failing 100% of their runs for roughly six months:
quickstart_guide_snippets_test.yml,test_docs_links.ymlanddocumentation_cookbook_tests.yml. All three invoke test suites that no longer exist —495e98ecdc("Python E2E tests retirement", #4731, 2026-01-15) removed 67 files undertests_end_to_end/, includingtests/QuickstartGuide,tests/Documentation/test_links.pyand the shared requirements files. Two of them still fire daily at 12:00 UTC and fail every time, which is pure noise plus wasted runner time.quickstart_guide_snippets_test.yml— 100/100 failures, still firing daily. Failed atInstall Test Dependenciesfrom Jan 15 to Jul 20;cd6bee31a4([OPIK-7385] [GHA] chore: migrate CI Python tooling from pip/setup-python to uv #7538, uv migration) restored the requirements files, which advanced the failure toRun suite→file or directory not found: tests/QuickstartGuide.test_docs_links.yml— 100/100 failures, still firing daily. Same two-phase history, now failing atRun linkinatorbecause it writes its CSV into the deletedtests_end_to_end/tests/Documentation/. Its intent is largely duplicated bydocumentation_preview_link.yml.documentation_cookbook_tests.yml— 100/100 failures; itsschedule:trigger was already removed, so it has been dispatch-only and dormant since 2026-03-24.Verified nothing else depends on them: no workflow, script, or doc references any of the three by filename or display name, and
mainhas no required status checks configured, so no branch protection is affected.tests_end_to_end/test_requirements.txtis deliberately kept —installation_tests.ymlstill uses it in five places.Change checklist
Issues
AI-WATERMARK
AI-WATERMARK: yes
Testing
Deletion-only change; no code paths altered.
pre-commitran on the staged change set — all 42 hooks reported "no files to check" (correct for a pure deletion), including⚙️ actionlint — github workflows.grep -rnacross the repo for all three filenames and theirname:display strings returns no remaining references.gh api repos/comet-ml/opik/branches/main/protection --jq '.required_status_checks.contexts'returns[], confirming none of these was a required check.grepthattests_end_to_end/test_requirements.txtstill has a live consumer (installation_tests.yml) and was therefore not removed.Documentation
No documentation changes needed — these are internal CI workflows with no user-facing surface and no references in the docs.
Follow-ups intentionally left out of scope:
tests_end_to_end/integrations_requirements.txtis now orphaned (quickstart_guide_snippets_test.ymlwas its only consumer) and could be removed in a separate cleanup.installation_tests.ymlis also 100/100 red for the same root cause and still fires daily; it is kept here by request and needs its own decision.