Codecov support for Cover.
Go to file
Spencer Florence c84a011a67 up build number
2016-03-24 07:28:09 -05:00
cover fix api on generate-codecov-coverage 2016-03-24 06:55:54 -05:00
.gitignore Initial commit 2015-08-31 16:35:42 -04:00
.travis.yml update build matrix to 6.4 2016-03-24 07:07:15 -05:00
info.rkt up build number 2016-03-24 07:28:09 -05:00
LICENSE Initial commit 2015-08-31 16:35:42 -04:00
README.md Update badges to reflect new repo location 2016-02-13 14:05:12 -05:00

Cover Codecov

Build Status codecov.io

Adds Codecov support to Cover.

Note: Travis CI is currently the only supported method of posting data to Codecov.

Use with TravisCI

First enable your repository on Travis and Codecov. Next add cover-codecov to the build-deps of your info.rkt. Then create a .travis.yml in the root of your repository.

# .travis.yml
langauge: c
sudo: false
env:
  global:
    - RACKET_DIR=~/racket
  matrix:
    - RACKET_VERSION=6.2 # Set this to the version of racket you use

before_install: # Install Racket
  - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket
  - cat ../travis-racket/install-racket.sh | bash
  - export PATH="${RACKET_DIR}/bin:${PATH}"

install: raco pkg install --deps search-auto $TRAVIS_BUILD_DIR # install dependencies

script:
  - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right?

after_success:
  - 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.

For additional Travis configuration information look at Travis Racket.