# HG changeset patch # User Christian Brabandt # Date 1468695607 -7200 # Node ID 7d76bef9412220783b3dae36179c63bca91ecaf0 # Parent b12bbbfdf8e403b67287adc16f64f317e4346480 commit https://github.com/vim/vim/commit/8211fcbdc903b98e4a4ab331613c206292da4a1c Author: Bram Moolenaar Date: Sat Jul 16 20:55:12 2016 +0200 Run unittests before scripttests. Hopefully does not mess up coverage. diff --git a/.travis.yml b/.travis.yml --- 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