fix: add missing closing backtick in nose2 description#2951
Open
sprmn24 wants to merge 2 commits intovinta:masterfrom
Open
fix: add missing closing backtick in nose2 description#2951sprmn24 wants to merge 2 commits intovinta:masterfrom
sprmn24 wants to merge 2 commits intovinta:masterfrom
Conversation
added 2 commits
March 8, 2026 21:35
The nose2 entry under Testing Frameworks was missing a closing backtick after `unittest2`, causing downstream markdown to render as unintended inline code. Line 1037: based on `unittest2. -> based on `unittest2`.
Add automated link checking using lychee (Rust-based, async) to detect broken URLs in README.md. Workflow triggers: - On PRs that modify README.md - On push to master (README.md changes) - Weekly scheduled scan (Sunday 06:00 UTC) - Manual dispatch Features: - lychee-action v2 with 708+ link validation - Persistent cache across runs (3-day max age) - Rate limiting (max 10 concurrent, 3 retries, 5s backoff) - Custom user-agent to avoid bot detection - GITHUB_TOKEN for elevated API rate limits - .lycheeignore for known-unreachable domains - lychee.toml for accept-429 and timeout tolerance New files: - .github/workflows/link-check.yml - lychee.toml - .lycheeignore
Owner
|
@sprmn24 Please one change per PR. |
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.
Summary
This PR fixes a missing closing backtick in the nose2 description in README.md.
The description previously rendered incorrectly in Markdown because the backtick before
unittest2was not closed.Changes
Impact