www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 6670c4d2fc187cc1ab6fee76a8eb46f5b8b56b22
parent e568ae22a507d480514f0c32a8256c26cc6db94d
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Wed, 19 Apr 2017 23:38:39 +0200

Skip doc-coverage on v6.3

Diffstat:
M.travis.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -19,7 +19,7 @@ env: before_install: - curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash -- raco pkg install --deps search-auto doc-coverage cover cover-codecov # or cover-coveralls +- if test $RACKET_VERSION = 6.3; then raco pkg install --deps search-auto cover cover-codecov; else raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi # or cover-coveralls install: - raco pkg install --deps search-auto -j 2 @@ -27,7 +27,7 @@ install: script: - 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")" +- if test $RACKET_VERSION != 6.3; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi - 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