Compare commits

..

No commits in common. "install-cover-codecov-example" and "master" have entirely different histories.

2 changed files with 5 additions and 3 deletions

View File

@ -4,8 +4,11 @@ env:
global: global:
- RACKET_DIR=~/racket - RACKET_DIR=~/racket
matrix: matrix:
- RACKET_VERSION=6.6 - RACKET_VERSION=6.1.1
- RACKET_VERSION=6.7 - RACKET_VERSION=6.2
- RACKET_VERSION=6.2.1
- RACKET_VERSION=6.3
- RACKET_VERSION=6.4
- RACKET_VERSION=HEAD - RACKET_VERSION=HEAD
matrix: matrix:

View File

@ -33,7 +33,6 @@ script:
- raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right? - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?
after_success: after_success:
- raco pkg install --deps search-auto cover cover-codecov
- raco cover -f codecov -d $TRAVIS_BUILD_DIR/coverage . # generate coverage information for coveralls - raco cover -f codecov -d $TRAVIS_BUILD_DIR/coverage . # generate coverage information for coveralls
``` ```
The above Travis configuration will install any project dependencies, test your project, and report coverage information to Codecov. The above Travis configuration will install any project dependencies, test your project, and report coverage information to Codecov.