summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-15 21:32:36 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-15 21:32:36 -0400
commit081f08e49af02c21eec8db51567b277f58a4376f (patch)
treed89c9f7be2edb010f010a8a79b34b21501632e92
parent4d02974db4b862fc7981a1258501ed5c8ecb5479 (diff)
downloadpython-coveragepy-git-081f08e49af02c21eec8db51567b277f58a4376f.tar.gz
Let igor do the XML report.
-rw-r--r--.hgignore1
-rw-r--r--.travis.yml4
-rw-r--r--igor.py1
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):