On Mar 1, 9:38 am, "Dr. David Kirkby" <david.kir...@onetel.net> wrote: > Given one test took 460 s on my 10-year old Sun, I suspect I need to increase > SAGE_TIMEOUT_LONG if I run the long tests. What is the default value?
The default value is 1800 seconds. It's defined in SAGE_ROOT/local/ bin/sage-doctest: TIMEOUT_LONG = os.getenv('SAGE_TIMEOUT_LONG') if TIMEOUT_LONG is None: # the timeout value for long doctests: 30 minutes (in seconds) TIMEOUT_LONG = 30 * 60 else: TIMEOUT_LONG = float(TIMEOUT_LONG) -- John -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org