Turn off coverage in older versions
This commit is contained in:
parent
1fe7f0f43a
commit
35432bf754
30
.travis.yml
30
.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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user