diff options
-rw-r--r-- | .hgignore | 1 | ||||
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | igor.py | 1 |
3 files changed, 2 insertions, 4 deletions
@@ -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 @@ -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): |