Skip to content

Commit fb3570c

Browse files
committed
remove unnecessary long tags, introduce new long tag for slowest test
1 parent 6769749 commit fb3570c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sage/combinat/plane_partition.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def plot(self, show_box=False, colors=None):
669669
EXAMPLES::
670670
671671
sage: PP = PlanePartition([[4,3,3,1],[2,1,1],[1,1]])
672-
sage: PP.plot() # optional - sage.plot
672+
sage: PP.plot() # optional - sage.plot
673673
Graphics object consisting of 27 graphics primitives
674674
"""
675675
from sage.functions.trig import cos, sin
@@ -766,7 +766,7 @@ def plot3d(self, colors=None):
766766
EXAMPLES::
767767
768768
sage: PP = PlanePartition([[4,3,3,1],[2,1,1],[1,1]])
769-
sage: PP.plot3d() # optional - sage.plot
769+
sage: PP.plot3d() # optional - sage.plot
770770
Graphics3d Object
771771
"""
772772
if colors is None:
@@ -1491,7 +1491,7 @@ def __init__(self):
14911491
14921492
sage: from sage.combinat.plane_partition import PlanePartitions_all
14931493
sage: P = PlanePartitions_all()
1494-
sage: TestSuite(P).run() # long time
1494+
sage: TestSuite(P).run()
14951495
"""
14961496
# We manually set these here rather than invoking the super().__init__().
14971497
# This is so DisjointUnionEnumeratedSets can make the Parent.__init__() call.
@@ -1545,7 +1545,7 @@ def __init__(self, box_size):
15451545
EXAMPLES::
15461546
15471547
sage: PP = PlanePartitions([4,3,2])
1548-
sage: TestSuite(PP).run()
1548+
sage: TestSuite(PP).run() # long time
15491549
"""
15501550
super().__init__(box_size, category=FiniteEnumeratedSets())
15511551

@@ -2828,7 +2828,7 @@ def __init__(self, box_size):
28282828
sage: TestSuite(PP).run()
28292829
28302830
sage: PP = PlanePartitions([4, 4, 2], symmetry='SSCPP')
2831-
sage: TestSuite(PP).run() # long time
2831+
sage: TestSuite(PP).run()
28322832
28332833
sage: PlanePartitions([4, 2, 2], symmetry='SSCPP')
28342834
Traceback (most recent call last):

0 commit comments

Comments
 (0)