changeset 9548:7d76bef94122

commit https://github.com/vim/vim/commit/8211fcbdc903b98e4a4ab331613c206292da4a1c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 16 20:55:12 2016 +0200 Run unittests before scripttests. Hopefully does not mess up coverage.
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Jul 2016 21:00:07 +0200
parents b12bbbfdf8e4
children 115bfecaeb88
files .travis.yml
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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