cowork: sitemap.xml coverage fixes + regression tests - #68
Draft
Coding-Dev-Tools wants to merge 5 commits into
Draft
cowork: sitemap.xml coverage fixes + regression tests#68Coding-Dev-Tools wants to merge 5 commits into
Coding-Dev-Tools wants to merge 5 commits into
Conversation
tests/test_linkcheck_additional.py and tests/test_linkcheck_edge_cases.py perform a sys.path.insert before importing linkcheck, which means the import must come after the path manipulation. Ruff flags this as E402 (module-level import not at top of file). Add '# noqa: E402' to silence the expected warning, matching the existing suppression in test_linkcheck.py. This makes 'ruff check .' pass cleanly and unblocks CI.
Seeds the GitHub Actions workflow that opens a PR server-side for this branch (sandbox cannot reach the GitHub API directly).
…ths; update article count
…, add 5 missing blog articles; add regression tests
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.
Fixes sitemap.xml drift against the actual site: removes the stale blog/traction-hits-680-developers.html URL (page was renamed to revenue-hits-680-developers.html, which is already listed) and adds the 5 missing blog article URLs (click-to-mcp-three-distribution-channels, click-to-mcp-three-transport-modes, configdrift-scan-multi-environment-configs-one-command, deploydiff-cost-governance-before-you-deploy, saas-churn-predictor-launch). Adds tests/test_sitemap.py with 4 regression tests asserting the sitemap exactly covers every real page (no missing, no stale, no duplicate ).