forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sagemathgh-39616: Fix tests with IPython 9
IPython 9 works fine with Sage at runtime but breaks some tests: - `NoColor` should be lowercase now and throws a warning otherwise https ://github.com/ipython/ipython/commit/a796b952038faa904c5d7e5ea6c068b17e7 65790 - `input_transformer_manager.check_complete` returning two spaces indentation was a bug caused by the `# indirect doctest` tag, which confused the parser. This is fixed in IPython 9, we remove the `# indirect doctest` so the test output is the same for all IPython versions. - Account for some addional verbosity in a couple of tests. URL: sagemath#39616 Reported by: Antonio Rojas Reviewer(s): François Bissey
- Loading branch information
Showing
6 changed files
with
10 additions
and
9 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=e093bc99c7c72359d0ea6afd49046133607fe391 | ||
sha256=2d5d04f26068b2c8aafd1e3b69e23ae2788390846f779e5714df6856ce89cde1 | ||
sha1=320c7f8637d89bc1117db5bf3a7e743add1b0dd3 | ||
sha256=ee7d7c93b2fa3e1ceadeadcc82c3cce986b9e0f92282cec4fbbe273625edc306 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
77c4e9b745daab99cdc0e2e989515a6f4ec91ed9 | ||
420a4bbd03606f09a9019208beda60255ed5643f |
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 |
---|---|---|
|
@@ -419,7 +419,7 @@ | |
s...: a = 3 | ||
s...: b = 5 | ||
s...: a + b | ||
8 | ||
8... | ||
sage: | ||
<BLANKLINE> | ||
Returning to doctests... | ||
|
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
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
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