From: Marek VavruĊĦa Date: Thu, 6 Aug 2015 16:57:33 +0000 (+0200) Subject: build: fixed check running before modules are installed X-Git-Tag: v1.0.0-beta1~58^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f53328da19c60165899264cfa5d0aed2d3a8797;p=thirdparty%2Fknot-resolver.git build: fixed check running before modules are installed --- diff --git a/.travis.yml b/.travis.yml index 4ea5882ca..43d70a94e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,8 @@ env: before_script: - ./scripts/bootstrap-depends.sh ${HOME}/.local script: - - make ${MAKEOPTS} install check COVERAGE=1 PREFIX=${HOME}/.local + - make ${MAKEOPTS} install COVERAGE=1 PREFIX=${HOME}/.local + - make check COVERAGE=1 PREFIX=${HOME}/.local after_success: - test $TRAVIS_OS_NAME = linux && coveralls -i lib -i daemon -x ".c" --gcov-options '\-lp' sudo: false