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:
parent
357d196dad
commit
f92328a1a1
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue