-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pythonPackages.Nikola: fix tests #95549
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
25 changes: 25 additions & 0 deletions
25
pkgs/development/python-modules/Nikola/fix_markdown_test.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 226e8a726e85525fb22664d9d76f4fe1729cf51d Mon Sep 17 00:00:00 2001 | ||
From: Chris Warrick <[email protected]> | ||
Date: Fri, 7 Feb 2020 18:00:04 +0100 | ||
Subject: [PATCH] Update tests for Markdown==3.2 output change | ||
|
||
This minor change does not affect the appearance of Nikola's output. | ||
--- | ||
tests/test_compile_markdown.py | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/tests/test_compile_markdown.py b/tests/test_compile_markdown.py | ||
index 4d0e3d89c..88ac290d0 100644 | ||
--- a/tests/test_compile_markdown.py | ||
+++ b/tests/test_compile_markdown.py | ||
@@ -31,8 +31,8 @@ | ||
<table class="codehilitetable"><tr><td class="linenos">\ | ||
<div class="linenodiv"><pre>1</pre></div>\ | ||
</td><td class="code"><pre class="code literal-block"><span></span>\ | ||
-<span class="kn">from</span> <span class="nn">this</span> | ||
-</pre> | ||
+<code><span class="kn">from</span> <span class="nn">this</span> | ||
+</code></pre> | ||
</td></tr></table> | ||
""", | ||
id="hilite", |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's nothing nix specific here, probably should make a patch against upstream?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's already fixed in upstream (from version 8.1.0 onwards). So an option to prevent including this would be to upgrade to the latest version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
another option is to use fetchpatch, here an example: https://github.com/NixOS/nixpkgs/pull/95524/files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seconded - change this to a
fetchpatch
of the relevant upstream commit (for a github commit you can usually just add.patch
to the end of the url) and I'll review this.