Compare commits

...

2 Commits

Author SHA1 Message Date
Georges Dupéron
f3a8e7043d Updated .travis.yml to build only on v6.6+, as cover now depends on that. 2017-01-08 00:13:03 +01:00
Georges Dupéron
3289705c1a Install cover-codecov in the example .travis.yml
I don't think `cover-codecov` comes with the main distribution, so the example .travis.yml file in the README should include the command to install it.
2017-01-07 22:46:41 +01:00
2 changed files with 3 additions and 5 deletions

View File

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

View File

@ -33,6 +33,7 @@ script:
- raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?
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
```
The above Travis configuration will install any project dependencies, test your project, and report coverage information to Codecov.