From a227aa8c8ae849b2f328a977f03068c945e4cb34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sat, 7 Jan 2017 22:46:41 +0100 Subject: [PATCH] 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. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4ddaa87..d9f305d 100644 --- 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.