summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-16 20:37:56 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-16 20:37:56 +0200
commitc3e539fa703b23d9a24c3520c96ec305ee932cb4 (patch)
tree6ba1b53de6ff2674051d9b71c9ed5106248a51ad /.travis.yml
parent502ae4ba63561c98ac69af26cd9883bfd18d225f (diff)
downloadvim-c3e539fa703b23d9a24c3520c96ec305ee932cb4.zip
patch 7.4.2052
Problem: Coverage report is messed up by the unittests. Solution: Add a separate test target for script tests. Use that when collecting coverage information.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index af3eb1f3a..c30870850 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 test
+ - make $SHADOWOPT 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