commit a227aa8c8ae849b2f328a977f03068c945e4cb34
parent c84a011a676b553341d7293493498f2b95eaa186
Author: Georges Dupéron <jahvascriptmaniac+github@gmail.com>
Date: Sat, 7 Jan 2017 22:46:41 +0100
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.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -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.