diff options
-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") |