Skip to main content

Upload coverage for C extensions to coveralls.io

Project description

Coveralls-merge

Get coverage data on Python C extensions, on both the python side and the C side of the api. The package combines the output from coverage-lcov and coveralls to upload your coverage data to coveralls.io.

This only supports travis-ci.

Usage

Setup coveralls, and make sure that it’s working with coveralls.io for the python portion. Then, to add c coverage, add a few lines to your .travis.yml:

python:
  - 2.7

install:
    # install lcov
  - "sudo apt-get -qq install lcov"
    # install test runners, coveralls, and coveralls-merge
  - "pip install coveralls nose coveralls-merge"
    # install the lcov parser
  - "gem install coveralls-lcov"

script:
  - coverage erase
  - python setup.py clean
  # build, using coverage flag
  - CFLAGS="-coverage" python setup.py build_ext --inplace

  # run your tests, with coverage as normal
  - coverage run -m nose Tests/test_*.py

after_success:
  # combine and generate json
  - lcov --capture --directory . -b . --output-file coverage.info
  - coveralls-lcov -v -n coverage.info > coverage.c.json

  # upload
  - coveralls-merge coverage.c.json

Changelog

0.0.3 (2018-01-25)

  • Strip parameter to strip leading directories in site-packages from path

0.0.2 (2014-07-30)

  • Requests fix

  • Doc Changes

0.0.1 (2014-07-30)

  • Initial upload

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coveralls-merge-0.0.3.tar.gz (4.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page