By default it is on, but you can switch it off (`-P '!integration'`) to ignore integration tests and get a faster build. .travis.yml uses this feature so that it doesn't keep failing on a timeout.
6 lines
137 B
YAML
6 lines
137 B
YAML
language: java
|
|
services: mongodb
|
|
|
|
install: mvn install -U -DskipTests=true -P spring-snapshot
|
|
script: mvn install -nsu -P '!integration'
|