mirror of https://github.com/apache/cloudstack.git
Merge pull request #1481 from shapeblue/travis-verbosefix
travis: increase build verbosityOutputs for modules that fail or succeed with unit tests results. Based on the issue raised in https://github.com/apache/cloudstack/pull/1466 this PR aims at increasing Travis build output so we can know which unit test fail. /cc @swill @nvazquez -- let me know if we just allow outputting everything will help? I had restricted the output as including all of them would disallow viewing the tabular final integration/marvin tests at the end (only possible by viewing raw output of each travis job). * pr/1481: travis: increase build verbosity Signed-off-by: Will Stevens <williamstevens@gmail.com>
This commit is contained in:
commit
39b4cd51b0
|
|
@ -37,9 +37,9 @@ fi
|
|||
export MAVEN_OPTS="-Xmx2048m -XX:MaxPermSize=500m -Djava.security.egd=file:/dev/./urandom"
|
||||
|
||||
if [ $TEST_SEQUENCE_NUMBER -eq 1 ]; then
|
||||
mvn -Pdeveloper,systemvm -Dsimulator clean install -T4 | egrep "Building|SUCCESS"
|
||||
mvn -Pdeveloper,systemvm -Dsimulator clean install -T4 | egrep "Building|Tests|SUCCESS|FAILURE"
|
||||
else
|
||||
mvn -Pdeveloper -Dsimulator clean install -DskipTests=true -T4 | egrep "Building|SUCCESS"
|
||||
mvn -Pdeveloper -Dsimulator clean install -DskipTests=true -T4 | egrep "Building|Tests|SUCCESS|FAILURE"
|
||||
fi
|
||||
|
||||
# Install mysql-connector-python
|
||||
|
|
|
|||
Loading…
Reference in New Issue