Skip to content

Commit 844410d

Browse files
committed
src/sage/interacts/test_jupyter.rst: add long times
Fix the CI warnings, 2025-07-14T18:37:47.9759323Z ##[warning]slow doctest: 2025-07-14T18:37:47.9761301Z test(interacts.calculus.function_tool) 2025-07-14T18:37:47.9777019Z Test ran for 5.54s cpu, 6.28s wall 2025-07-14T18:37:55.5143193Z ##[warning]slow doctest: 2025-07-14T18:37:55.5169150Z test(interacts.fractals.mandelbrot) 2025-07-14T18:37:55.5169618Z Test ran for 5.78s cpu, 7.53s wall 2025-07-14T18:38:02.1158079Z ##[warning]slow doctest: 2025-07-14T18:38:02.1159474Z test(interacts.fractals.julia) 2025-07-14T18:38:02.1159994Z Test ran for 6.21s cpu, 6.60s wall 2025-07-14T18:38:14.6948348Z ##[warning]slow doctest: 2025-07-14T18:38:14.6950545Z test(interacts.geometry.special_points) 2025-07-14T18:38:14.6951067Z Test ran for 6.04s cpu, 6.08s wall by adding "# long time" to these tests.
1 parent e4c6258 commit 844410d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/sage/interacts/test_jupyter.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Test all interacts from the Sage interact library::
205205
Exact value of the integral \(\displaystyle\int_{0}^{2}x^{2} +
206206
1\,\mathrm{d}x=4.666666666666668\)
207207

208-
sage: test(interacts.calculus.function_tool)
208+
sage: test(interacts.calculus.function_tool) # long time
209209
...Interactive function <function function_tool at ...> with 7 widgets
210210
f: EvalText(value='sin(x)', description='f')
211211
g: EvalText(value='cos(x)', description='g')
@@ -218,7 +218,7 @@ Test all interacts from the Sage interact library::
218218
<center><font color="green">\(g = \cos\left(x\right)\)</font></center>
219219
<center><font color="blue"><b>\(h = f = \sin\left(x\right)\)</b></font></center>
220220

221-
sage: test(interacts.fractals.mandelbrot)
221+
sage: test(interacts.fractals.mandelbrot) # long time
222222
...Interactive function <function mandelbrot at ...> with 6 widgets
223223
expo: FloatSlider(value=2.0, description='expo', max=10.0, min=-10.0)
224224
iterations: IntSlider(value=20, description='# iterations', min=1)
@@ -229,7 +229,7 @@ Test all interacts from the Sage interact library::
229229
<h2>Mandelbrot Fractal</h2>
230230
Recursive Formula: \(z \leftarrow z^{2.00} + c\) for \(c \in \mathbb{C}\)
231231

232-
sage: test(interacts.fractals.julia)
232+
sage: test(interacts.fractals.julia) # long time
233233
...Interactive function <function julia at ...> with 8 widgets
234234
expo: FloatSlider(value=2.0, description='expo', max=10.0, min=-10.0)
235235
c_real: FloatSlider(value=0.5, description='real part const.', max=2.0, min=-2.0, step=0.01)
@@ -265,7 +265,7 @@ Test all interacts from the Sage interact library::
265265
\(AB = 1.931852\), \(BC = 1.732051\), \(CA = 1.414214\)
266266
Area of triangle \(ABC = 1.183013\)
267267

268-
sage: test(interacts.geometry.special_points)
268+
sage: test(interacts.geometry.special_points) # long time
269269
...Interactive function <function special_points at ...> with 10 widgets
270270
title: HTMLText(value='<h2>Special points in triangle</h2>')
271271
a0: IntSlider(value=30, description='A', max=360)

0 commit comments

Comments
 (0)