From 081f08e49af02c21eec8db51567b277f58a4376f Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 15 Sep 2015 21:32:36 -0400 Subject: Let igor do the XML report. --- .hgignore | 1 + .travis.yml | 4 ---- igor.py | 1 + 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.hgignore b/.hgignore index 0f166364..ec63472d 100644 --- a/.hgignore +++ b/.hgignore @@ -9,6 +9,7 @@ syntax: glob *.bak .coverage .coverage.* +coverage.xml .metacov .metacov.* *.swp diff --git a/.travis.yml b/.travis.yml index 866e9007..a0a25c6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,8 +22,4 @@ install: script: - tox - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi - - if [ $COVERAGE_COVERAGE == 'yes' ]; then mv .metacov .coverage; fi - - ls -al - - if [ $COVERAGE_COVERAGE == 'yes' ]; then coverage xml -i; fi - - ls -al - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi diff --git a/igor.py b/igor.py index 5989c11b..14adc60a 100644 --- a/igor.py +++ b/igor.py @@ -181,6 +181,7 @@ def do_combine_html(): cov.combine() cov.save() cov.html_report() + cov.xml_report() def do_test_with_tracer(tracer, *noseargs): -- cgit v1.2.1