Turn off coverage in older versions

This commit is contained in:
Suzanne Soy 2021-03-05 04:00:31 +00:00
parent 540a0979eb
commit a1e2ac3eaf

View File

@ -8,24 +8,24 @@ env:
- PATH="$RACKET_DIR/bin:$PATH" - PATH="$RACKET_DIR/bin:$PATH"
matrix: matrix:
# RACKET_VERSION is an argument to install-racket.sh # RACKET_VERSION is an argument to install-racket.sh
- RACKET_VERSION=6.4 - RACKET_VERSION=6.4 COVER=false
- RACKET_VERSION=6.5 - RACKET_VERSION=6.5 COVER=false
- RACKET_VERSION=6.6 - RACKET_VERSION=6.6 COVER=false
- RACKET_VERSION=6.7 - RACKET_VERSION=6.7 COVER=false
- RACKET_VERSION=6.8 - RACKET_VERSION=6.8 COVER=false
- RACKET_VERSION=6.9 - RACKET_VERSION=6.9 COVER=true
- RACKET_VERSION=6.10 - RACKET_VERSION=6.10 COVER=true
- RACKET_VERSION=6.10.1 - RACKET_VERSION=6.10.1 COVER=true
- RACKET_VERSION=6.11 - RACKET_VERSION=6.11 COVER=true
- RACKET_VERSION=6.12 - RACKET_VERSION=6.12 COVER=true
- RACKET_VERSION=7.0 - RACKET_VERSION=7.0 COVER=true
- RACKET_VERSION=7.1 - RACKET_VERSION=7.1 COVER=true
- RACKET_VERSION=7.2 - RACKET_VERSION=7.2 COVER=true
- RACKET_VERSION=HEAD - RACKET_VERSION=HEAD COVER=true
before_install: before_install:
- curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash - 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 $COVER; then raco pkg install --deps search-auto doc-coverage cover cover-codecov; fi # or cover-coveralls
install: install:
- raco pkg install --deps search-auto -j 2 - raco pkg install --deps search-auto -j 2
@ -33,7 +33,7 @@ install:
script: script:
- raco test -r -p "$(basename "$TRAVIS_BUILD_DIR")" - raco test -r -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 setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs "$(basename "$TRAVIS_BUILD_DIR")"
#- if test "$RACKET_VERSION" != "6.5" -a "$RACKET_VERSION" != "6.6"; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi #- if $COVER; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")"; fi
- raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true - if $COVER; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules. # TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info. # TODO: deploy the coverage info.