Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't divide by zero if nothing to report. #250. | Ned Batchelder | 2013-09-30 | 1 | -1/+6 | |
| | ||||||
* | Properly report .pyw files. #261. | Ned Batchelder | 2013-09-29 | 1 | -8/+40 | |
| | ||||||
* | Search a list of places to find HTML report static files. #259. | Ned Batchelder | 2013-09-28 | 2 | -6/+25 | |
| | | | | | --HG-- rename : coverage/htmlfiles/jquery-1.4.3.min.js => coverage/htmlfiles/jquery.min.js | |||||
* | Line too long. | Ned Batchelder | 2013-09-28 | 1 | -2/+2 | |
| | ||||||
* | Thanks, Windows, for reminding me to close my files! | Ned Batchelder | 2013-09-28 | 1 | -14/+18 | |
| | ||||||
* | Now we can run .pyc files directly. Closes #264. | Ned Batchelder | 2013-09-28 | 2 | -19/+57 | |
| | ||||||
* | More abstractions for bytes objects. Cleans up some version checks in the ↵ | Ned Batchelder | 2013-09-28 | 3 | -21/+34 | |
| | | | | real code. | |||||
* | Make iteritems detection more like the rest of backward.py, and add a test ↵ | Ned Batchelder | 2013-09-28 | 1 | -3/+5 | |
| | | | | of it. | |||||
* | Allow relative paths in the [paths] aliases. #267. | Ned Batchelder | 2013-09-26 | 1 | -2/+15 | |
| | ||||||
* | Automated merge with ssh://bitbucket.org/ned/coveragepy | Ned Batchelder | 2013-09-16 | 1 | -2/+2 | |
|\ | ||||||
| * | Find .pyw files when searching for source files. | Ned Batchelder | 2013-09-16 | 1 | -2/+2 | |
| | | ||||||
* | | The PyTracer can't always be stopped, so give it a flag to stop tracing when ↵ | Ned Batchelder | 2013-09-16 | 1 | -1/+8 | |
|/ | | | | that happens. This silences a noisome exception during the test suite. | |||||
* | Improve and more fully test the first-blank-line decoding fix. Thanks, ↵ | Ned Batchelder | 2013-09-16 | 1 | -2/+2 | |
| | | | | Roger Hu. | |||||
* | Merged in rogerjhu/coverage.py (pull request #19) | Ned Batchelder | 2013-09-16 | 1 | -1/+1 | |
|\ | | | | | | | Make UTF-8 detection more robust. | |||||
| * | Make UTF-8 detection more robust. | Roger Hu | 2013-05-25 | 1 | -1/+1 | |
| | | | | | | | | | | If the 1st line of the Python is blank/empty, the function assumes that the encoding is 'ascii' and doesn't try for the 2nd line. | |||||
* | | Get rid of locals(). Thanks for the prod, Brett Cannon. | Ned Batchelder | 2013-09-15 | 1 | -14/+15 | |
| | | ||||||
* | | More --debug options, split code into separate objects. | Ned Batchelder | 2013-09-08 | 5 | -34/+105 | |
| | | ||||||
* | | Oops, it's 2013 already. | Ned Batchelder | 2013-09-07 | 1 | -1/+1 | |
| | | ||||||
* | | Better to leave the space out. | Ned Batchelder | 2013-09-06 | 2 | -2/+2 | |
| | | ||||||
* | | Give the matchers a way to get info out of them. | Ned Batchelder | 2013-09-06 | 1 | -0/+8 | |
| | | ||||||
* | | Move the info formatting into its own function. | Ned Batchelder | 2013-09-06 | 2 | -10/+23 | |
| | | ||||||
* | | Make debug=trace trace all the yes/no tracing decisions. | Ned Batchelder | 2013-09-06 | 1 | -4/+7 | |
| | | ||||||
* | | PyTracer's cache broke when I changed False to None from should_trace. Fixed. | Ned Batchelder | 2013-09-04 | 1 | -2/+3 | |
| | | ||||||
* | | Call this 3.6.1a1 | Ned Batchelder | 2013-09-04 | 1 | -1/+1 | |
| | | ||||||
* | | New flag for run: --debug, can trace why files aren't being traced. | Ned Batchelder | 2013-09-04 | 4 | -25/+43 | |
| | | ||||||
* | | Keep things working on PyPy 2.1 | Ned Batchelder | 2013-08-16 | 1 | -2/+10 | |
| | | | | | | | | | | | | | | | | | | _structseq is in the lib_pypy directory on sys.path, but for some reason when imported, it claims to be from /opt/pypy//pypy-c-jit-linux-x86-64/build/lib_pypy/_structseq.py I don't know why that is, but importing _structseq and treating its directory as part of the stdlib makes the tests pass. | |||||
* | | Branch coverage improvement, fixes #90. Bug #212 fixed on py2, but not py3. | Ned Batchelder | 2013-06-09 | 1 | -5/+0 | |
|/ | ||||||
* | Turns out opcode isn't a documented module... | Ned Batchelder | 2013-05-01 | 1 | -4/+4 | |
| | ||||||
* | Add some debugging for branch issues. | Ned Batchelder | 2013-05-01 | 1 | -0/+8 | |
| | ||||||
* | I like it better like this. | Ned Batchelder | 2013-04-21 | 1 | -29/+31 | |
| | ||||||
* | Tweaks to Matt's merged pull request. | Ned Batchelder | 2013-04-21 | 1 | -2/+1 | |
| | ||||||
* | Merged in desmaj/coverage.py (pull request #17) | Ned Batchelder | 2013-04-21 | 1 | -1/+1 | |
|\ | | | | | | | Removed redundant code; Changed a setup.py test to ensure that the proper setup.py is imported; Changed the 'oddball' tests to use a filename whitelist instead of a blacklist (so that tests run better under instrumental) | |||||
| * | Removed redundant code; Changed a setup.py test to ensure that the proper ↵ | desmaj | 2013-03-18 | 1 | -1/+1 | |
| | | | | | | | | setup.py is imported; Changed the 'oddball' tests to use a filename whitelist instead of a blacklist (so that tests run better under instrumental | |||||
* | | Don't touch files as unexecuted if they were omitted. Fixes #218. | Ned Batchelder | 2013-04-21 | 1 | -0/+6 | |
| | | ||||||
* | | Get sys.path right when running modules with -m, fixes #207 and #242. | Ned Batchelder | 2013-04-20 | 2 | -9/+13 | |
|/ | ||||||
* | Automated merge with ssh://bitbucket.org/ned/coveragepy | Ned Batchelder | 2013-03-10 | 1 | -3/+7 | |
|\ | ||||||
| * | Don't issue spurious warnings about the trace function changing. Fixes #164 | Ned Batchelder | 2013-03-10 | 1 | -3/+7 | |
| | | ||||||
* | | A less-weird weird line | Ned Batchelder | 2013-02-24 | 1 | -1/+1 | |
|/ | ||||||
* | Bump the version. | Ned Batchelder | 2013-01-23 | 1 | -1/+1 | |
| | ||||||
* | Better understanding of how the trace function is invoked as byte codes are ↵ | Ned Batchelder | 2013-01-11 | 1 | -67/+80 | |
| | | | | executed. Fixes #175. | |||||
* | A more convenient way to check on the trace function. | Ned Batchelder | 2013-01-11 | 1 | -3/+4 | |
| | ||||||
* | Use the nice way to reverse a list. | Ned Batchelder | 2013-01-09 | 2 | -3/+18 | |
| | ||||||
* | More yieldification of parser.py | Ned Batchelder | 2013-01-08 | 1 | -17/+13 | |
| | ||||||
* | Use generators in the byte code parsing. __next__? yikes! | Ned Batchelder | 2013-01-08 | 2 | -42/+25 | |
| | ||||||
* | Update docs etc for official version 3.6. | Ned Batchelder | 2013-01-05 | 1 | -1/+1 | |
| | ||||||
* | One more pylint improvement: no more multi-statement lines. | Ned Batchelder | 2012-12-30 | 1 | -6/+12 | |
| | ||||||
* | This is the correct fix for #224. Data gets collected, and doesn't incur ↵ | Ned Batchelder | 2012-12-29 | 1 | -20/+29 | |
| | | | | crazy harvesting during reporting. | |||||
* | Bump to 3.6b3 | Ned Batchelder | 2012-12-28 | 1 | -1/+1 | |
| | ||||||
* | Preventing double harvesting was keeping the nose plugin from working. Not ↵ | Ned Batchelder | 2012-12-28 | 1 | -29/+20 | |
| | | | | sure what it was meant to solve in the first place. Fixes #224. Maybe allows double warnings now? | |||||
* | One more 2.3 thing. | Ned Batchelder | 2012-12-22 | 1 | -1/+1 | |
| |