2016-11-09 5 views
0

ためトラヴィスの最適化: mvn -q clean verify | tail -n 50私はMavenプロジェクトのためのトラヴィスを使用していますとなるように大きいため、エラー出力を、私は、出力の最後の50行を見てみたい、大きなログ

しかし、たとえ一部私のテストケースは失敗し、コードはステータス0で終了し、ローカルでテストを実行しない限り、ビルドに失敗したかどうかはわかりません。これを処理するための最も最適な方法だろう何

Tests run: 106, Failures: 0, Errors: 2, Skipped: 0 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:2.18.1:verify (default) on project easyshare-api: There are test failures. [ERROR] [ERROR] Please refer to /home/travis/build/au-easyshare/easyshare-api/target/failsafe-reports for the individual test results. [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException The command "mvn -q clean verify | tail -n 50" exited with 0.

の理想的にはのソリューションは、2〜3倍多くのテストケースがある場合でも有効です。

ありがとうございます!

答えて

0

出力を短くするためにapplication.propertiesを変更し、tail -n 50を削除しました。この問題が修正されました:

spring.jpa.generate-ddl = false spring.jpa.show-sql = false

関連する問題