codecov-haskell

Codecov.io support for Haskell.

https://github.com/guillaume-nargeot/codecov-haskell

Latest on Hackage:0.5.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Guillaume Nargeot
Maintained by Guillaume Nargeot

This utility converts and sends Haskell projects hpc code coverage to codecov.io.

Usage

Below is the simplest example of .travis.yml configuration to use with Travis CI:

language: haskell
ghc: 7.8
script:
  - cabal configure --enable-tests --enable-library-coverage && cabal build && cabal test
after_script:
  - cabal install codecov-haskell
  - codecov-haskell [options] [test-suite-names]

Further information can be found in the README.