diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-16 20:55:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-16 20:55:12 +0200 |
commit | 8211fcbdc903b98e4a4ab331613c206292da4a1c (patch) | |
tree | 575513ebc0b1d190b53492af54c164ed938beba0 /.travis.yml | |
parent | e21d62435ef966b8adb40dee13ef9d6791316674 (diff) | |
download | vim-git-8211fcbdc903b98e4a4ab331613c206292da4a1c.tar.gz |
Run unittests before scripttests. Hopefully does not mess up coverage.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c30870850..99694c0f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ script: - if [ "$CHECK_AUTOCONF" = "yes" -a "$CC" = "gcc" ]; then make -C src autoconf; fi - if [ "x$SHADOWOPT" != x ]; then make -C src shadow; fi && (cd ${SRCDIR} && ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && make -j$NPROC) - ${SRCDIR}/vim --version - - make $SHADOWOPT scripttests + - make $SHADOWOPT unittests scripttests after_success: - if [ x"$COVERAGE" = "xyes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -e ${SRCDIR}/xxd -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi |