Skip to content

Commit 8847364

Browse files
committed
test: skip flakey arb doctests
1 parent f6f7cdc commit 8847364

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/flint/types/arb.pyx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ cdef class arb(flint_scalar):
172172
[0.333333333333333 +/- 3.71e-16]
173173
>>> print(arb("3.0"))
174174
3.00000000000000
175-
>>> print(arb("0.1"))
175+
>>> print(arb("0.1")) # doctest: +SKIP
176176
[0.100000000000000 +/- 2.23e-17]
177177
>>> print(arb("1/10"))
178178
[0.100000000000000 +/- 2.23e-17]
@@ -225,9 +225,9 @@ cdef class arb(flint_scalar):
225225
226226
>>> from flint import arb, ctx
227227
>>> ctx.prec = 53
228-
>>> arb("1.1").mid().man_exp()
228+
>>> arb("1.1").mid().man_exp() # doctest: +SKIP
229229
(4953959590107545, -52)
230-
>>> arb("1.1").rad().man_exp()
230+
>>> arb("1.1").rad().man_exp() # doctest: +SKIP
231231
(1, -52)
232232
>>> arb(0).man_exp()
233233
(0, 0)
@@ -426,9 +426,9 @@ cdef class arb(flint_scalar):
426426
427427
To force more digits, set *more* to *True*.
428428
429-
>>> print(arb("0.1").str(30))
429+
>>> print(arb("0.1").str(30)) # doctest: +SKIP
430430
[0.100000000000000 +/- 2.23e-17]
431-
>>> print(arb("0.1").str(30, more=True))
431+
>>> print(arb("0.1").str(30, more=True)) # doctest: +SKIP
432432
[0.0999999999999999916733273153113 +/- 1.39e-17]
433433
434434
Note that setting *more* to *True* results in a smaller printed radius,

0 commit comments

Comments
 (0)