Merge pull request #34 from broadinstitute/md_longer_default_timeout
Extend default timeout to 20 minutes
This commit is contained in:
commit
5cc5aedcd1
|
|
@ -44,7 +44,7 @@ import java.lang.reflect.Method;
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
public class TestNGTestTransformer implements IAnnotationTransformer {
|
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);
|
final static Logger logger = Logger.getLogger(TestNGTestTransformer.class);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue