Skip doc-coverage on 6.3, as it is not compatible with 6.3 anymore

This commit is contained in:
Georges Dupéron 2017-04-19 14:42:53 +02:00
parent 1cea73c992
commit 54667cd08b

View File

@ -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.