Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncaught ZeroDivisionError when generating XML report #250

Closed
nedbat opened this issue Jul 14, 2013 · 3 comments
Closed

Uncaught ZeroDivisionError when generating XML report #250

nedbat opened this issue Jul 14, 2013 · 3 comments
Labels
bug Something isn't working

Comments

@nedbat
Copy link
Owner

nedbat commented Jul 14, 2013

Originally reported by Chris Rebert (Bitbucket: cvrebert, GitHub: cvrebert)


If you ask coverage v3.6 to generate an XML report under a no-meaningful-tests edge case, it crashes:

<nose portion of call stack elided>
  File "/var/lib/jenkins/shiningpanda/jobs/f9dc77ce/virtualenvs/d41d8cd9/lib/python2.7/site-packages/coverage/control.py", line 647, in xml_report
    return reporter.report(morfs, outfile=outfile)
  File "/var/lib/jenkins/shiningpanda/jobs/f9dc77ce/virtualenvs/d41d8cd9/lib/python2.7/site-packages/coverage/xmlreport.py", line 88, in report
    return 100.0 * (lhits_tot + bhits_tot) / (lnum_tot + bnum_tot)
ZeroDivisionError: float division by zero

@nedbat
Copy link
Owner Author

nedbat commented Sep 29, 2013

@cvrebert I thought I understood what this report meant, but I can't reproduce it now. Can you give me more details? What does a "no-meaningful-tests edge case" mean? How are you running your tests, and your XML report?

@nedbat
Copy link
Owner Author

nedbat commented Sep 30, 2013

Original comment by Chris Rebert (Bitbucket: cvrebert, GitHub: cvrebert)


Sorry. Here's a more detailed testcase description:

  1. Create this directory+file structure:
/foo/
/foo/bar/
/foo/bar/__init__.py       [empty file]
/foo/bar/test_foobar.py    [content given below]
#!python

# /foo/bar/test_foobar.py
from unittest import TestCase

class MyTestCase(TestCase):
    pass
  1. Create a new Python 2.7 virtualenv, and activate it.
  2. Run pip install coverage nose
  3. With /foo/ as your working directory, run nosetests --with-xunit --with-coverage --cover-package=bar --cover-xml
  4. Observe that the command crashed with a traceback, due to a ZeroDivisionError in coverage.

@nedbat
Copy link
Owner Author

nedbat commented Sep 30, 2013

Fixed in 129c86f0e044a96a (bb)

@nedbat nedbat closed this as completed Sep 30, 2013
@nedbat nedbat added minor bug Something isn't working labels Jun 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant