-
-
Notifications
You must be signed in to change notification settings - Fork 565
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
Update src/ext/doctest/python3-known-passing.txt
#27519
Comments
Commit: |
comment:2
I'm also tempted to make this change: diff --git a/Makefile b/Makefile
index cb1e291313..7628ad7855 100644
--- a/Makefile
+++ b/Makefile
@@ -143,7 +143,7 @@ fast-rebuild-clean: misc-clean bdist-clean
TESTALL = ./sage -t --all
PTESTALL = ./sage -t -p --all
-PTEST_PYTHON3 = cat src/ext/doctest/python3-known-passing.txt | xargs ./sage -t --long -p
+PTEST_PYTHON3 = sed '/^\#.*$$/d' src/ext/doctest/python3-known-passing.txt | xargs ./sage -t --long -p
# Flags for ./sage -t --all.
# By default, include all tests marked 'dochtml' -- see
diff --git a/src/ext/doctest/python3-known-passing.txt b/src/ext/doctest/python3-known-passing.txt
index 0b70f229f0..99412b844e 100644
--- a/src/ext/doctest/python3-known-passing.txt
+++ b/src/ext/doctest/python3-known-passing.txt
@@ -1,3 +1,7 @@
+# Each line starting with '#' is a comment.
+# Each other line should list a directory in which doctests are known
+# to pass with Python 3.
+#
src/sage/algebras/
src/sage/arith/
src/sage/calculus/ Comments? Good idea or bad? Here or on another ticket? New commits:
|
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
|
comment:5
I would really like to focus our Python3 effort on Python 3.7 (#25680) first. If it weren't for the previous ticket updating For that reason, I'm personally -1 on this ticket. |
comment:6
The file hasn't been modified in a month, and it is important to try to catch regressions. I think upgrading once per release is not too often. Did you never want to modify this file? What's your alternative? What is left to be done on #25680, anyway? |
comment:7
Replying to @jhpalmieri:
My suggestion is to first merge #25680. |
Dependencies: #25680 |
Reviewer: Jeroen Demeyer |
Changed branch from u/jhpalmieri/update-known-py3-tests to |
Update the list of files whose doctests should pass with Python 3.
Depends on #25680
Component: python3
Author: John Palmieri
Branch/Commit:
fb4381f
Reviewer: Jeroen Demeyer
Issue created by migration from https://trac.sagemath.org/ticket/27519
The text was updated successfully, but these errors were encountered: