Turn off coverage in older versions

This commit is contained in:
Suzanne Soy 2021-03-05 04:20:23 +00:00
parent 1fe7f0f43a
commit 35432bf754

View File

@ -20,17 +20,17 @@ env:
# Supply more than one RACKET_VERSION (as in the example below) to # Supply more than one RACKET_VERSION (as in the example below) to
# create a Travis-CI build matrix to test against multiple Racket # create a Travis-CI build matrix to test against multiple Racket
# versions. # versions.
- 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
matrix: matrix:
allow_failures: allow_failures:
@ -53,9 +53,9 @@ before_script:
script: script:
- raco test -p tr-immutable - raco test -p tr-immutable
- raco setup --check-pkg-deps --pkgs tr-immutable - raco setup --check-pkg-deps --pkgs tr-immutable
- raco pkg install --deps search-auto doc-coverage - if $COVER; then raco pkg install --deps search-auto doc-coverage; fi
- raco doc-coverage tr-immutable - if $COVER; then raco doc-coverage tr-immutable; fi
- raco pkg install --deps search-auto cover cover-codecov - if $COVER; then raco pkg install --deps search-auto cover cover-codecov; fi
- raco cover -s doc -s test -s main -f codecov -d $TRAVIS_BUILD_DIR/coverage . - if $COVER; then raco cover -s doc -s test -s main -f codecov -d $TRAVIS_BUILD_DIR/coverage .; fi
after_success: after_success: