commit 54667cd08ba810f702e5c7ea060d20248847a1b9
parent 1cea73c9922cd9206dc407e2aa087fb499009c67
Author: Georges Dupéron <georges.duperon@gmail.com>
Date: Wed, 19 Apr 2017 14:42:53 +0200
Skip doc-coverage on 6.3, as it is not compatible with 6.3 anymore
Diffstat:
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
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 -s "(expand-for-clause|for-clause-syntax-protect|syntax-pattern-variable\?)" "$(basename "$TRAVIS_BUILD_DIR")"
+- if test $RACKET_VERSION != 6.3; then raco doc-coverage -s "(expand-for-clause|for-clause-syntax-protect|syntax-pattern-variable\?)" "$(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