diff options
| author | Stefan Hoffmann <stefan991@gmail.com> | 2014-03-07 15:57:07 +0100 | 
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-08 06:17:59 -0300 | 
| commit | 69967ccaba2a173f6589192b0cce7c4cc30cab50 (patch) | |
| tree | 9c5a5cdd0220ad6aac056f6958c67741a94ba992 | |
| parent | ab0c96187c6abaea505fc9d8f16db4f53101a5b5 (diff) | |
| download | rneovim-69967ccaba2a173f6589192b0cce7c4cc30cab50.tar.gz rneovim-69967ccaba2a173f6589192b0cce7c4cc30cab50.tar.bz2 rneovim-69967ccaba2a173f6589192b0cce7c4cc30cab50.zip | |
use more verbose output type for unittests on travis
| -rwxr-xr-x | scripts/travis.sh | 1 | ||||
| -rw-r--r-- | scripts/unittest.sh | 5 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/scripts/travis.sh b/scripts/travis.sh index c493da29b5..7292953710 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -1,6 +1,7 @@  #!/bin/sh -e  export VALGRIND_CHECK=1 +export BUSTED_OUTPUT_TYPE="TAP"  make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist"  make  make unittest diff --git a/scripts/unittest.sh b/scripts/unittest.sh index f792308275..600d6d5b3c 100644 --- a/scripts/unittest.sh +++ b/scripts/unittest.sh @@ -3,4 +3,7 @@  (cd "$pkgroot/build" && make) || exit 1  eval "$(luarocks path)" -busted --pattern=.moon ./test +if [ -z "$BUSTED_OUTPUT_TYPE" ]; then +    export BUSTED_OUTPUT_TYPE="utf_terminal" +fi +busted --pattern=.moon -o $BUSTED_OUTPUT_TYPE ./test | 
