summaryrefslogtreecommitdiff
path: root/coverage/collector.py
Commit message (Collapse)AuthorAgeFilesLines
...
* New flag for run: --debug, can trace why files aren't being traced.Ned Batchelder2013-09-041-2/+2
|
* Don't issue spurious warnings about the trace function changing. Fixes #164Ned Batchelder2013-03-101-3/+7
|
* A more convenient way to check on the trace function.Ned Batchelder2013-01-111-3/+4
|
* Clean up debugging stuffNed Batchelder2012-12-211-4/+5
|
* Debugging to understand why 'trace function changed' appears.Ned Batchelder2012-12-201-2/+4
|
* Silence the last of the pylint warnings.Ned Batchelder2012-11-201-1/+1
|
* Fix #201: wrong default for traces0 being missing.Ned Batchelder2012-10-131-1/+1
|
* If fullcoverage is run with the wrong tracer, make it apparent.Ned Batchelder2012-08-301-1/+6
|
* Undo Brett's change to the fullcoverage feature: it should only be used with ↵Ned Batchelder2012-08-301-1/+2
| | | | the C tracer.
* Make fullcoverage at least run (doesn't work though).Brett Cannon2012-08-171-7/+6
|
* If the C tracer is missing during testing, make the problem immediately ↵Ned Batchelder2012-07-071-1/+12
| | | | apparent.
* Change the name of the C tracer from Tracer to CTracer, as it always should ↵Ned Batchelder2011-09-031-3/+3
| | | | have been.
* Control the test better; don't use os when cleaning up the pathNed Batchelder2011-08-081-1/+1
|
* A fullcoverage tracer that works. Events are stashed, then replayed when ↵Ned Batchelder2011-08-081-4/+3
| | | | coverage is started.
* An enormous hack to try to get stdlib measurement from the very beginning of ↵Ned Batchelder2011-08-071-1/+18
| | | | the process.
* Detect when our trace function is yanked out from under us, and warn the ↵Ned Batchelder2010-11-061-1/+11
| | | | user. Finishes, but does not fix, issue #93.
* Use 2-and-3-friendly syntax in the debugging prints in the trace function.Ned Batchelder2010-10-131-5/+8
|
* Clean up lint.Ned Batchelder2010-08-261-1/+1
|
* The thread-startup dance caused Thread.run() to not be measured. This fixes ↵Ned Batchelder2010-08-261-5/+15
| | | | it, I hope without introducing too much more new code. Fixes #85.
* Yikes: when using the Python tracing function, we haven't been caching the ↵Ned Batchelder2010-06-131-1/+4
| | | | results of should_trace since <<changeset a480f40d1fa4>>
* Properly record multiple exits separately. Fixes #62.Ned Batchelder2010-04-271-2/+8
|
* A way to start coverage when Python starts, to help with measuring coverage ↵Ned Batchelder2009-12-231-1/+1
| | | | in subprocesses.
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-21/+22
|
* Fix some self-measurement problems. Now coverage_coverage.py works again ↵Ned Batchelder2009-11-291-0/+5
| | | | (had to be sure to stop coverage if check_coverage threw an exception).
* Add statistics gathering to help find a problem in the C tracer.Ned Batchelder2009-11-221-2/+11
|
* Clean up.Ned Batchelder2009-11-081-2/+7
|
* The C tracer function can do arc tracing also.Ned Batchelder2009-10-241-3/+2
|
* Everything should derive from object.Ned Batchelder2009-10-241-2/+2
|
* Tidy up long linesNed Batchelder2009-10-241-1/+1
|
* Another line of logging.Ned Batchelder2009-10-231-0/+1
|
* More exception flow testing. This stuff is kind of involved...Ned Batchelder2009-10-201-0/+2
|
* Start unit testing the arc measurement. In arcs, -1 means enter or exit.Ned Batchelder2009-10-161-3/+3
|
* Write the arcs to the data file.Ned Batchelder2009-10-121-1/+1
|
* Report lines properly when measuring branches; Use None for the placeholder ↵Ned Batchelder2009-10-121-8/+24
| | | | value throughout.
* Reduce the amount of data translation by having the tracers record data in a ↵Ned Batchelder2009-10-111-18/+23
| | | | form more like it will be consumed. Also should reduce the amount of work the tracers have to do.
* One way to collect arc information..Ned Batchelder2009-10-111-95/+30
|
* Properly separate the line data and the arc data.Ned Batchelder2009-10-101-14/+19
|
* Continued hacking on branch coverage.Ned Batchelder2009-10-101-1/+83
|
* Basic plumbing for a --branch option.Ned Batchelder2009-10-071-2/+8
|
* Added a 'coverage debug' command to get internal information for diagnosing ↵Ned Batchelder2009-09-271-0/+4
| | | | problems. Also, all commands should at least take -h.
* Fix a problem with DecoratorTools fiddling with the trace function and ↵Ned Batchelder2009-08-091-65/+81
| | | | screwing us up. Now the Python trace function is simpler, with no variability of registered trace function. Fixes bugs #12 and #13.
* Narrow the amount of code in a coverage start/stop window in a test so that ↵Ned Batchelder2009-07-121-0/+2
| | | | the differences in 2.x and 3.x scoping rules don't change the results of the test. Also, some commented-out logging of the trace machinery that helped me find the problem. Now all tests pass on Python 3.1!
* A better way to fix the missing-return-after-exception problem in the trace ↵Ned Batchelder2009-07-061-48/+25
| | | | function: no pyexpat specifics, and py 2.3 still uses C trace function.
* Fix Python 2.3's exception tracing by always using a dumbed-down Python ↵Ned Batchelder2009-07-041-18/+52
| | | | tracer there.
* .pyc files can be moved, so use __file__ to correctly find the source file.Ned Batchelder2009-05-051-1/+1
|
* Lint clean-ups.Ned Batchelder2009-05-051-6/+6
|
* Keeping a stack of Collectors makes it possible for Coverage to measure ↵Ned Batchelder2009-05-031-1/+29
| | | | itself (mostly).
* Clarify what Collector.start and .stop do to other threads.Ned Batchelder2009-05-021-7/+15
|
* Weeding in collector.pyNed Batchelder2009-05-021-8/+31
|
* The name of the project is Coverage, not coverage.py.Ned Batchelder2009-04-301-1/+1
|