How to read test result reports on Travis CI?

后端 未结 3 909
天命终不由人
天命终不由人 2021-02-03 21:09

For my builds on Travis, I want to be able to read the test results when there are failing tests to see the stacktrace of those failing tests. Currently, these reports are store

3条回答
  •  别那么骄傲
    2021-02-03 21:40

    Try adding --info to your command:

    ./gradlew test --info
    

    If you want more, try:

    ./gradlew test --debug
    

提交回复
热议问题