[pypy-svn] r77513 - pypy/branch/fast-forward/lib-python

afa at codespeak.net afa at codespeak.net
Fri Oct 1 00:30:45 CEST 2010


Author: afa
Date: Fri Oct  1 00:30:43 2010
New Revision: 77513

Modified:
   pypy/branch/fast-forward/lib-python/conftest.py
Log:
Reduce timeout to 100 seconds per test script.

Today 7 of them reached the 1000s limit,
and the test lasted more than 3 hours.


Modified: pypy/branch/fast-forward/lib-python/conftest.py
==============================================================================
--- pypy/branch/fast-forward/lib-python/conftest.py	(original)
+++ pypy/branch/fast-forward/lib-python/conftest.py	Fri Oct  1 00:30:43 2010
@@ -30,7 +30,7 @@
 def pytest_addoption(parser):
     group = parser.getgroup("complicance testing options") 
     group.addoption('-T', '--timeout', action="store", type="string", 
-       default="1000", dest="timeout", 
+       default="100", dest="timeout", 
        help="fail a test module after the given timeout. "
             "specify in seconds or 'NUMmp' aka Mega-Pystones")
     group.addoption('--pypy', action="store", type="string",



More information about the Pypy-commit mailing list