From a08c3c676e98ffdad0df31ee0722bdee63842f02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Fri, 31 Mar 2017 10:22:09 +0200 Subject: [PATCH] Fixed .travis.yml (basename instead of dirname) --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 749914a..3ba5fc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,9 +23,9 @@ install: - raco pkg install --deps search-auto -j 2 script: -- raco test -x -p "$(dirname "$TRAVIS_BUILD_DIR")" -- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(dirname "$TRAVIS_BUILD_DIR")" -- raco doc-coverage "$(dirname "$TRAVIS_BUILD_DIR")" +- raco test -x -p "$(basename "$TRAVIS_BUILD_DIR")" +- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")" +- raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")" - raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true # TODO: add an option to cover to run the "outer" module too, not just the submodules. # TODO: deploy the coverage info. \ No newline at end of file