Extend default timeout to 20 minutes

-- The default of 10 minutes is right on the edge for some tests, and we really want a default not to enforce a max time (test should be short) but to stop testng from failing to terminate ever in the case where some test is truly hung
This commit is contained in:
Mark DePristo 2013-02-13 17:43:30 -08:00
parent 357d196dad
commit f92328a1a1
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ import java.lang.reflect.Method;
* @version 0.1
*/
public class TestNGTestTransformer implements IAnnotationTransformer {
public static final long DEFAULT_TIMEOUT = 1000 * 60 * 10; // 10 minutes max per test
public static final long DEFAULT_TIMEOUT = 1000 * 60 * 20; // 20 minutes max per test
final static Logger logger = Logger.getLogger(TestNGTestTransformer.class);