summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* | The current directory auto-inserted into sys.path is now absolute, to better ↵Ned Batchelder2011-05-211-1/+1
| | | | | | | | mimic Python execution.
* | WIP for partial branch exclusion. #113Ned Batchelder2011-05-175-18/+86
| |
* | Rearrange lines to put options in alphabetical order.Ned Batchelder2011-05-101-8/+8
| |
* | Refactor the C code to streamline the __call__ path.Ned Batchelder2011-05-021-26/+16
| |
* | Merge bug_123 work into default.Ned Batchelder2011-04-271-4/+30
|\ \
| * | C trace function now roundtrips properly. Fixes #123 and #125.Ned Batchelder2011-04-271-2/+5
| | | | | | | | | | | | | | | --HG-- branch : bug_123
| * | A fix for bug #123, but it doesn't restore tracing properly yet, still want ↵Ned Batchelder2011-04-251-4/+27
| | | | | | | | | | | | | | | | | | | | | to get to the bottom of that. --HG-- branch : bug_123
* | | Since people make this mistake, and it's mysterious: accept a single string ↵Ned Batchelder2011-04-251-1/+6
|/ / | | | | | | for omit and include.
* | Keyboard-shorcut help is now available on the file page of the HTML report.Ned Batchelder2011-04-206-0/+84
| |
* | StyleNed Batchelder2011-04-171-3/+3
| |
* | StyleNed Batchelder2011-04-171-19/+19
| |
* | More tests, some refactoring of the code.Ned Batchelder2011-04-171-14/+14
| |
* | Even better way to test js: build fixtures programmatically, no need for ↵Ned Batchelder2011-04-171-6/+10
| | | | | | | | monkeypatching the code under test.
* | Convert from DOS line-endingsNed Batchelder2011-04-171-53/+53
| |
* | Javascript testsNed Batchelder2011-04-161-22/+43
| |
* | Deal more gracefully with unexpectedly-not-python source during reporting.Ned Batchelder2011-04-083-5/+10
| |
* | Tweaks to the chunk-navigation hotkeys. Still looking for a way to automate ↵Ned Batchelder2011-04-081-12/+16
| | | | | | | | testing.
* | HTML incremental generation should also take the coverage.py version into ↵Ned Batchelder2011-03-271-14/+33
| | | | | | | | account: a new version means scrap everything and do it all.
* | HTML hotkeys for jumping to next/prev highlighted source section.Ned Batchelder2011-03-274-1/+157
| |
* | Make the new code a little nicer.Ned Batchelder2011-03-251-13/+23
| |
* | Got 2.3 to build, so now this is tested and works against 2.3Ned Batchelder2011-03-252-2/+9
| |
* | Remove trailing spacesNed Batchelder2011-03-241-1/+1
| |
* | Incremental HTML generation. Some cleanup would be good.Ned Batchelder2011-03-246-8/+158
| |
* | --omit and --include now interpret their values more usefully. Fixes #121.Ned Batchelder2011-03-211-6/+20
| |
* | Clean-upsNed Batchelder2011-03-162-3/+7
| |
* | A file opened in 'b' mode needs bytes, not strings. Try to do this in a ↵Ned Batchelder2011-03-152-3/+18
| | | | | | | | clean-ish way...
* | A different (better) way to avoid warnings when no code has been run.Ned Batchelder2011-02-122-20/+10
| |
* | Don't warn about not collecting data if we never ran any code in the first ↵Ned Batchelder2011-02-072-11/+27
| | | | | | | | place.
* | Make this message simpler and clearer.Ned Batchelder2011-02-071-1/+1
| |
* | Add tests and doc for Brandon's -m flag.Ned Batchelder2011-02-062-29/+43
| |
* | Automated merge with file:///home/ned/coverage/trunkNed Batchelder2011-02-062-7/+53
|\ \
| * | Added an actual "-m" command line option to turn on the module loader.Brandon Craig Rhodes2011-02-021-6/+13
| | |
| * | Wrote the basic logic for running a Python module or package as __main__.Brandon Craig Rhodes2011-02-022-3/+42
| | |
* | | Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-02-041-15/+17
|\ \ \ | |/ / |/| |
| * | Lint cleanups in the Javascript code.Ned Batchelder2011-02-041-15/+17
| |/
* | Some pylint cleanups.Ned Batchelder2011-02-012-2/+2
| |
* | Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-0110-12/+12
| |
* | A couple more places to use open_source instead of open(fname, 'rU')Ned Batchelder2011-01-302-3/+3
| |
* | A bunch more places where a file close should be in a finally clause.Ned Batchelder2011-01-302-8/+16
| |
* | Isolate the open/tokenize.open distinction into backward.pyNed Batchelder2011-01-303-10/+15
| |
* | Properly close files.Brett Cannon2011-01-282-5/+15
| |
* | Open source files with the proper encoding.Brett Cannon2011-01-282-3/+10
|/
* WhitespaceNed Batchelder2010-11-071-2/+2
|
* Forgot this file in the last checkin.Ned Batchelder2010-11-071-0/+99
|
* Hotkeys for the HTML report.Ned Batchelder2010-11-074-11/+32
|
* Upgrade jquery to 1.4.3Ned Batchelder2010-11-075-25/+177
|
* Detect when our trace function is yanked out from under us, and warn the ↵Ned Batchelder2010-11-063-3/+23
| | | | user. Finishes, but does not fix, issue #93.
* Put the Javascript into an object.Ned Batchelder2010-11-053-9/+12
|
* Use 2-and-3-friendly syntax in the debugging prints in the trace function.Ned Batchelder2010-10-131-5/+8
|
* Jython reports $py.class files in the trace function, so adapt to find the ↵Ned Batchelder2010-10-131-0/+5
| | | | source file.