Tagged Questions
The coverage.py tag has no wiki summary.
12
votes
2answers
135 views
Finding unused Django code to remove
I've started working on a project with loads of unused legacy code in it. I was wondering if it might be possible to use a tool like coverage in combination with a crawler (like the django-test-utils ...
7
votes
1answer
144 views
Why doesn't coverage.py properly measure Django's runserver command?
I should know the answer to this, but I don't: if you try to measure the coverage of a Django project like this:
coverage run manage.py runserver
you get coverage measurement that misses all of ...
4
votes
2answers
200 views
When would my Python test suite file coverage not be 100%?
We are using Hudson and coverage.py to report the code coverage of our test suite. Hudson breaks down coverage into:
packages
files
classes
lines
conditionals
Coverage.py only reports coverage on ...
3
votes
1answer
194 views
Code coverage with django debug server
I am using coverage.py from http://nedbatchelder.com/code/coverage/ for getting coverage data for my django unittests but I can't seem to figure out how can I run the coverage on the django debug ...
3
votes
3answers
767 views
How do I generate coverage xml report for a single package?
I'm using nose and coverage to generate coverage reports. I only have one package right now, ae, so I specify to only cover that:
nosetests -w tests/unit --with-xunit --with-coverage ...
3
votes
1answer
333 views
Is it possible exclude test directories from coverage.py reports?
I'm kind of a rookie with python unit testing, and particularly coverage.py. Is it desirable to have coverage reports include the coverage of your actual test files?
Here's a screenshot of my HTML ...
2
votes
1answer
57 views
Why weren't certain Python files examined by coverage.py?
I'm using coverage.py to measure test coverage in a Python project, but some Python files are not showing up in the coverage report. One thing that is different about these files is that they were not ...
2
votes
1answer
57 views
Is it possible to add code coverage support to GAEUnit?
One of the requested features for GAEUnit for over a year has been support for code coverage. Is it technically possible to add coverage support to GAEUnit so that after tests complete, a report could ...
2
votes
3answers
195 views
How can I exclude South migrations from coverage reports using coverage.py
I use coverage.py to check the test coverage of my django application. However since I use South for my database migrations, all those files show up with 0% and mess up the overall percentage.
I ...
2
votes
2answers
879 views
coverage.py: exclude files
How do I exclude entire files from coverage.py reports?
According to the documentation you can exclude code by matching lines. I want to exclude entire files, so that the reports don't include 3rd ...
1
vote
1answer
120 views
Python doesn't see submodules when running under coverage and nose
I get an import error when I use coverage.py to run a suite of tests where nose is the underlying test runner. The tests run fine if I just run under Python instead.
coverage run run_tests.py
ERROR
...
1
vote
1answer
74 views
Can coverage.py be used to measure code coverage of specific file in a python Google App Engine app?
I am currently working through the process of trying to measure code coverage for python files in a Python Google App Engine app. I'd like to run the dev server locally and then run my gaeunit tests ...
1
vote
1answer
484 views
How to omit using python coverage lib?
I would like to omit some module that are in some particular directory : eggs and bin
coverage -r -i --omit=/usr/lib/,/usr/share/,eggs,bin
Name ...
0
votes
1answer
45 views
Using omit flag in Python coverage.py API
I'm using the python coverage.py to create a very basic test suite with coverage. Currently everything works great. However, my coverage report includes all the /usr/local/lib libraries that are ...
0
votes
0answers
68 views
omit option does not work for python coverage report
Tried to run:
coverage -r -i --omit=/usr/lib/,/usr/share/,`pwd`/eggs,`pwd`/bin
as mentioned in this thread
My output still contains such as:
/usr/share/pyshared/dbus/exceptions ...
0
votes
1answer
95 views
Coverage.py Python Module - Import Errors when Running Script
First question, so please bare with me if I have made a rookie mistake or lack of clarity!
I'm having trouble getting the "coverage" module for Python working correctly.
I have no permissions to ...
0
votes
1answer
94 views
Error in eclipse, when imort coverage?
in mac terminal
$ coverage help
Coverage.py, version 3.5
Measure, collect, and report on code coverage in Python programs.
While in the eclipse, I encounter error as follows: please give a hand
...
0
votes
4answers
326 views
Error compiling coverage.py on MacOSX
I tried to install coverage 3.4 on my MacBook running on current Mac OS X 10.6.7. This is what I got as an error:
$ easy_install coverage
install_dir ...
0
votes
1answer
29 views
How can I query the enable status of a plugin in nose?
I'm currently trying to see if a nose plugin is enabled from within my test harness. The specific thing I'm trying to do is propagate the enable status of the coverage module to subprocess executions. ...