mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-31 12:24:10 -08:00
Speed-up travis build
This commit is contained in:
parent
d4903d460b
commit
f86e498898
|
@ -35,7 +35,7 @@ install:
|
||||||
- popd
|
- popd
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- travis_wait 60 mvn -e test -P \!htmlUnit
|
- travis_wait 60 mvn -e test -P \!htmlUnit -Dteavm.junit.optimized=false -Dteavm.junit.js.runner=none
|
||||||
- BASE_PATH=`pwd`
|
- BASE_PATH=`pwd`
|
||||||
- pushd tests/src/test/js
|
- pushd tests/src/test/js
|
||||||
- export DISPLAY=:99.0
|
- export DISPLAY=:99.0
|
||||||
|
|
|
@ -124,6 +124,10 @@ public class TeaVMTestRunner extends Runner implements Filterable {
|
||||||
case "htmlunit":
|
case "htmlunit":
|
||||||
runStrategy = new HtmlUnitRunStrategy();
|
runStrategy = new HtmlUnitRunStrategy();
|
||||||
break;
|
break;
|
||||||
|
case "":
|
||||||
|
case "none":
|
||||||
|
runStrategy = null;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new InitializationError("Unknown run strategy: " + runStrategyName);
|
throw new InitializationError("Unknown run strategy: " + runStrategyName);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user