www

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

commit 35432bf754bd88308aa2441eb6d9bc8cd594b141
parent 1fe7f0f43a59455a1bec28cd65a30d0c5e806afe
Author: Suzanne Soy <ligo@suzanne.soy>
Date:   Fri,  5 Mar 2021 04:20:23 +0000

Turn off coverage in older versions

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

diff --git a/.travis.yml b/.travis.yml @@ -20,17 +20,17 @@ env: # Supply more than one RACKET_VERSION (as in the example below) to # create a Travis-CI build matrix to test against multiple Racket # versions. - - RACKET_VERSION=6.7 - - RACKET_VERSION=6.8 - - RACKET_VERSION=6.9 - - RACKET_VERSION=6.10 - - RACKET_VERSION=6.10.1 - - RACKET_VERSION=6.11 - - RACKET_VERSION=6.12 - - RACKET_VERSION=7.0 - - RACKET_VERSION=7.1 - - RACKET_VERSION=7.2 - - RACKET_VERSION=HEAD + - RACKET_VERSION=6.7 COVER=false + - RACKET_VERSION=6.8 COVER=false + - RACKET_VERSION=6.9 COVER=true + - RACKET_VERSION=6.10 COVER=true + - RACKET_VERSION=6.10.1 COVER=true + - RACKET_VERSION=6.11 COVER=true + - RACKET_VERSION=6.12 COVER=true + - RACKET_VERSION=7.0 COVER=true + - RACKET_VERSION=7.1 COVER=true + - RACKET_VERSION=7.2 COVER=true + - RACKET_VERSION=HEAD COVER=true matrix: allow_failures: @@ -53,9 +53,9 @@ before_script: script: - raco test -p tr-immutable - raco setup --check-pkg-deps --pkgs tr-immutable - - raco pkg install --deps search-auto doc-coverage - - raco doc-coverage tr-immutable - - raco pkg install --deps search-auto cover cover-codecov - - raco cover -s doc -s test -s main -f codecov -d $TRAVIS_BUILD_DIR/coverage . + - if $COVER; then raco pkg install --deps search-auto doc-coverage; fi + - if $COVER; then raco doc-coverage tr-immutable; fi + - if $COVER; then raco pkg install --deps search-auto cover cover-codecov; fi + - if $COVER; then raco cover -s doc -s test -s main -f codecov -d $TRAVIS_BUILD_DIR/coverage .; fi after_success: