Changed default timeout for run-tests.py from 30 to 180 seconds.
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 07 Jul 2006 11:23:53 +0200
changeset 2576 6a961a54f953
parent 2575 7289d20b18cd
child 2577 fa76c5d609c9
child 2583 6e5427447f4c
child 2591 61f2008cd6bf
Changed default timeout for run-tests.py from 30 to 180 seconds. As e.g. test-http-proxy already takes quite some time (about a minute here) and tests usually should clean up after themselves, the timeout should only be hit in case of other problems.
tests/run-tests.py
--- a/tests/run-tests.py	Thu Jul 06 09:26:31 2006 -0700
+++ b/tests/run-tests.py	Fri Jul 07 11:23:53 2006 +0200
@@ -32,7 +32,7 @@
     help="print a test coverage report inc. standard libraries")
 parser.add_option("-C", "--annotate", action="store_true",
     help="output files annotated with coverage")
-parser.set_defaults(timeout=30)
+parser.set_defaults(timeout=180)
 (options, args) = parser.parse_args()
 verbose = options.verbose
 coverage = options.cover or options.cover_stdlib or options.annotate