diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-15 21:48:42 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-15 21:48:42 -0400 |
commit | eba392b772d59c20b20e6bfa9c083449cc54a909 (patch) | |
tree | 3d7ef19eb4ca08a3b9be76d9ae2b0a3fc55c92fe | |
parent | 081f08e49af02c21eec8db51567b277f58a4376f (diff) | |
download | python-coveragepy-git-eba392b772d59c20b20e6bfa9c083449cc54a909.tar.gz |
Codecov is working on travis
-rw-r--r-- | .travis.yml | 10 | ||||
-rw-r--r-- | README.rst | 5 | ||||
-rw-r--r-- | igor.py | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index a0a25c6c..28d3fa93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,11 +9,11 @@ python: - 2.7 env: - #- TOXENV=py26 - #- TOXENV=py27 - #- TOXENV=py33 - #- TOXENV=py34 - #- TOXENV=pypy + - TOXENV=py26 + - TOXENV=py27 + - TOXENV=py33 + - TOXENV=py34 + - TOXENV=pypy - TOXENV=py27 COVERAGE_COVERAGE=yes install: @@ -7,7 +7,7 @@ Coverage.py Code coverage testing for Python. -| |ci-status| |win-ci-status| |reqs| +| |ci-status| |win-ci-status| |reqs| |codecov| | |kit| |downloads| |docs| Coverage.py measures code coverage, typically during test execution. It uses @@ -56,3 +56,6 @@ For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt. .. |downloads| image:: https://img.shields.io/pypi/dm/coverage.svg :target: https://pypi.python.org/pypi/coverage :alt: Monthly PyPI downloads +.. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master + :target: http://codecov.io/github/nedbat/coveragepy?branch=master + :alt: Coverage! @@ -172,7 +172,7 @@ def run_tests_with_coverage(tracer, *nose_args): def do_combine_html(): - """Combine data from a meta-coverage run, and make the HTML report.""" + """Combine data from a meta-coverage run, and make the HTML and XML reports.""" import coverage os.environ['COVERAGE_HOME'] = os.getcwd() os.environ['COVERAGE_METAFILE'] = os.path.abspath(".metacov") |