Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Not going to use print functions, but at least make them all look the same. | Ned Batchelder | 2013-10-20 | 2 | -5/+5 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | with statements: no more finally close | Ned Batchelder | 2013-10-20 | 5 | -28/+9 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | Now I can use collections.defaultdict | Ned Batchelder | 2013-10-20 | 1 | -6/+3 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | Generator expressons are ok now. | Ned Batchelder | 2013-10-19 | 5 | -11/+11 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | Now I can use decorators. | Ned Batchelder | 2013-10-19 | 1 | -1/+1 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | Now I can use tuples with startswith and endswith. | Ned Batchelder | 2013-10-19 | 1 | -1/+1 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | Get rid of our backward implementation of set, sorted, reversed, and rpartition. | Ned Batchelder | 2013-10-19 | 6 | -10/+3 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
| * | We only run on 2.6, 2.7, 3.2, 3.3 now. | Ned Batchelder | 2013-10-19 | 9 | -324/+299 | |
| | | | | | | | | | | --HG-- branch : 4.0 | |||||
* | | More tests of Templite's sad-path behavior. | Ned Batchelder | 2013-10-27 | 1 | -0/+8 | |
| | | ||||||
* | | Now that this is a CoverageTest, need to shut off the temp dir. | Ned Batchelder | 2013-10-26 | 1 | -0/+2 | |
| | | ||||||
* | | Templite now compiles to Python code for speed. | Ned Batchelder | 2013-10-26 | 1 | -5/+38 | |
| | | ||||||
* | | Use sets as much as possible to speed HTML reports. Seems to be a 10% speedup. | Ned Batchelder | 2013-10-23 | 1 | -3/+4 | |
|/ | ||||||
* | Fix the mechanism for HTML to find OS-installed resources. | Ned Batchelder | 2013-10-10 | 1 | -0/+23 | |
| | ||||||
* | Fix the jquery-1.4.3 reference in the js tests, where it matters, and in the ↵ | Ned Batchelder | 2013-10-06 | 37 | -37/+37 | |
| | | | | html gold files, where it really doesn't, but it's good to clean it all up. | |||||
* | Can't just run 'python' in a subprocess from 3.x, since it doesn't install ↵ | Ned Batchelder | 2013-10-05 | 2 | -2/+12 | |
| | | | | as 'python'. | |||||
* | Make everything work on py2.3 again (for the last time). | Ned Batchelder | 2013-10-05 | 4 | -6/+37 | |
| | ||||||
* | Don't divide by zero if nothing to report. #250. | Ned Batchelder | 2013-09-30 | 1 | -1/+16 | |
| | ||||||
* | Quiet pylint. | Ned Batchelder | 2013-09-29 | 1 | -1/+1 | |
| | ||||||
* | Properly report .pyw files. #261. | Ned Batchelder | 2013-09-29 | 1 | -0/+21 | |
| | ||||||
* | Search a list of places to find HTML report static files. #259. | Ned Batchelder | 2013-09-28 | 1 | -2/+39 | |
| | | | | | --HG-- rename : coverage/htmlfiles/jquery-1.4.3.min.js => coverage/htmlfiles/jquery.min.js | |||||
* | Mark a bunch of tests that don't need temp directories. | Ned Batchelder | 2013-09-28 | 9 | -4/+26 | |
| | ||||||
* | Add tooling to find test classes that use temp directories and don't need to. | Ned Batchelder | 2013-09-28 | 1 | -0/+64 | |
| | ||||||
* | Now we can run .pyc files directly. Closes #264. | Ned Batchelder | 2013-09-28 | 1 | -2/+57 | |
| | ||||||
* | More abstractions for bytes objects. Cleans up some version checks in the ↵ | Ned Batchelder | 2013-09-28 | 1 | -2/+8 | |
| | | | | real code. | |||||
* | I guess that was too modern. Need to define execfile in this module. | Ned Batchelder | 2013-09-28 | 1 | -1/+1 | |
| | ||||||
* | Make iteritems detection more like the rest of backward.py, and add a test ↵ | Ned Batchelder | 2013-09-28 | 1 | -0/+16 | |
| | | | | of it. | |||||
* | Modernize. | Ned Batchelder | 2013-09-28 | 1 | -3/+3 | |
| | ||||||
* | Allow relative paths in the [paths] aliases. #267. | Ned Batchelder | 2013-09-26 | 1 | -1/+25 | |
| | ||||||
* | Improve the memory leak test, so it doesn't give us so many false negatives. | Ned Batchelder | 2013-09-17 | 1 | -17/+31 | |
| | ||||||
* | Find .pyw files when searching for source files. | Ned Batchelder | 2013-09-16 | 1 | -0/+2 | |
| | ||||||
* | Improve and more fully test the first-blank-line decoding fix. Thanks, ↵ | Ned Batchelder | 2013-09-16 | 1 | -13/+46 | |
| | | | | Roger Hu. | |||||
* | Merged in rogerjhu/coverage.py (pull request #19) | Ned Batchelder | 2013-09-16 | 1 | -1/+15 | |
|\ | | | | | | | Make UTF-8 detection more robust. | |||||
| * | Make UTF-8 detection more robust. | Roger Hu | 2013-05-25 | 1 | -1/+15 | |
| | | | | | | | | | | 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. | |||||
* | | Add one more assertion to a test about COVERAGE_PROCESS_START. | Ned Batchelder | 2013-09-15 | 1 | -1/+3 | |
| | | ||||||
* | | Satisfy pylint. | Ned Batchelder | 2013-09-15 | 1 | -3/+3 | |
| | | ||||||
* | | Always show long diffs in test failures. | Ned Batchelder | 2013-09-15 | 2 | -2/+4 | |
| | | ||||||
* | | Skip bug212 on py3, it isn't fixed yet. | Ned Batchelder | 2013-09-15 | 1 | -1/+3 | |
| | | ||||||
* | | Make our sys.path adjustment more robust. | Ned Batchelder | 2013-09-15 | 1 | -2/+5 | |
| | | | | | | | | | | | | Nose uses a custom importer that seems to cache. Using "" for the current directory gets it confused for some reason, but only on a Mac, using Py3.3, in a virtualenv! | |||||
* | | Tests for debug tracing features. | Ned Batchelder | 2013-09-12 | 2 | -1/+92 | |
| | | ||||||
* | | Make the should_trace_cache test a little more bullet-proof. | Ned Batchelder | 2013-09-08 | 1 | -1/+8 | |
| | | ||||||
* | | A test that the collector is using the should_trace_cache properly. | Ned Batchelder | 2013-09-08 | 1 | -0/+47 | |
| | | ||||||
* | | More --debug options, split code into separate objects. | Ned Batchelder | 2013-09-08 | 2 | -22/+27 | |
| | | ||||||
* | | Better to leave the space out. | Ned Batchelder | 2013-09-06 | 1 | -7/+7 | |
| | | ||||||
* | | Give the matchers a way to get info out of them. | Ned Batchelder | 2013-09-06 | 1 | -2/+7 | |
| | | ||||||
* | | Move the info formatting into its own function. | Ned Batchelder | 2013-09-06 | 1 | -1/+22 | |
| | | ||||||
* | | New flag for run: --debug, can trace why files aren't being traced. | Ned Batchelder | 2013-09-04 | 1 | -24/+56 | |
| | | ||||||
* | | Get test_html working under OS X when run from a venv. Thank, Brett Cannon. | Ned Batchelder | 2013-08-14 | 1 | -0/+1 | |
| | | ||||||
* | | Branch coverage improvement, fixes #90. Bug #212 fixed on py2, but not py3. | Ned Batchelder | 2013-06-09 | 1 | -37/+38 | |
| | | ||||||
* | | Fix the new test for py3, and add a test for #212. | Ned Batchelder | 2013-05-03 | 1 | -3/+23 | |
|/ | ||||||
* | Add a (failing) test for #146. | Ned Batchelder | 2013-05-01 | 1 | -0/+12 | |
| |