Skip to content

Commit 588b400

Browse files
author
Release Manager
committed
gh-39664: Add some 'not tested' marks to avoid CI failure As in the title. I don't think there's any advantage in running the test again. There's only a very small risk of the fixer forget to delete the marker, but it seems like a nonexistent issue (whichever pull request that fix it should also remove the `# not tested`) At least for those that doesn't segmentation fault or hang. Side note: not sure what's a good solution to this. Maybe we can do #39470 instead? (but then it doesn't apply to meson…) ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #39664 Reported by: user202729 Reviewer(s):
2 parents 943b1b4 + 69331d9 commit 588b400

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/sage/knots/link.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ def homfly_polynomial(self, var1=None, var2=None, normalization='lm'):
30433043
sage: # needs sage.libs.homfly
30443044
sage: L = Link([[[1, -1], [2, -2]], [1, 1]])
30453045
sage: L2 = Link([[1, 4, 2, 3], [2, 4, 1, 3]])
3046-
sage: L2.homfly_polynomial()
3046+
sage: L2.homfly_polynomial() # not tested (:issue:`39544`)
30473047
-L*M^-1 - L^-1*M^-1
30483048
sage: L.homfly_polynomial()
30493049
-L*M^-1 - L^-1*M^-1

src/sage/rings/polynomial/symmetric_ideal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ def groebner_basis(self, tailreduce=False, reduced=True, algorithm=None, report=
915915
....: 'y_0*z_0 + 2*z_0^2 - 2*z_0 - 1',
916916
....: 'y_0^2 + 2*y_0*z_0 - 2*z_0^2 + 2*z_0 - 2',
917917
....: '-y_0^2 - 2*y_0*z_0 - z_0^2 + y_0 - 1'] * X
918-
sage: I.groebner_basis() # needs sage.combinat
918+
sage: I.groebner_basis() # not tested (:issue:`39537`) # needs sage.combinat
919919
[1]
920920
921921
sage: Y.<x,y> = InfinitePolynomialRing(GF(3), order='degrevlex',

src/sage/rings/semirings/tropical_variety.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def weight_vectors(self):
590590
sage: R.<a,b,c,d> = PolynomialRing(T)
591591
sage: f = R.random_element()
592592
sage: vec = f.tropical_variety().weight_vectors()[2].values()
593-
sage: all(a == vector([0,0,0,0]) for a in [sum(lst) for lst in vec])
593+
sage: all(a == vector([0,0,0,0]) for a in [sum(lst) for lst in vec]) # not tested (:issue:`39663`)
594594
True
595595
"""
596596
from itertools import combinations

src/sage/schemes/elliptic_curves/ell_point.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,8 @@ def _add_(self, other):
272272
....: if xs:
273273
....: pts.append(E(choice(xs), y, z))
274274
sage: P, Q = pts
275-
sage: R = P + Q
276-
sage: for d in N.divisors():
275+
sage: R = P + Q # not tested (:issue:`39191`)
276+
sage: for d in N.divisors(): # not tested (:issue:`39191`)
277277
....: if d > 1:
278278
....: assert R.change_ring(Zmod(d)) == P.change_ring(Zmod(d)) + Q.change_ring(Zmod(d))
279279
"""

0 commit comments

Comments
 (0)