Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reporter (0.07 sec)

  1. .travis/run.sh

    #!/bin/bash
    
    cd `dirname $0`
    cd ..
    BASE_DIR=`pwd`
    LOG_FILE=$BASE_DIR/test.log
    
    mvn test > $LOG_FILE 2>&1
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    tail -n1000 $LOG_FILE
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Feb 02 08:45:33 UTC 2019
    - 273 bytes
    - Viewed (0)
Back to top