Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | A test of the plugin.find_executable_files method | Ned Batchelder | 2017-03-31 | 1 | -0/+52 | |
| | ||||||
* | Windows has a different error message for path(float) | Ned Batchelder | 2017-03-30 | 1 | -0/+1 | |
| | ||||||
* | Be pickier about the expected failures from plugin tests. | Ned Batchelder | 2017-03-30 | 1 | -7/+26 | |
| | ||||||
* | Use new show_stderr flag so we can see errors printed to stderr during ↵ | Ned Batchelder | 2017-03-30 | 1 | -1/+0 | |
| | | | | failing tests. | |||||
* | Clean up in plugin tests | Ned Batchelder | 2017-03-29 | 1 | -8/+6 | |
| | ||||||
* | Use standard skipTest, which unittest-mixins will override. | Ned Batchelder | 2016-06-12 | 1 | -2/+2 | |
| | ||||||
* | Correct the defaults for coverage.report(show_missing=None, skip_covered=None) | Ned Batchelder | 2016-05-08 | 1 | -2/+2 | |
| | ||||||
* | Plain-text output no longer includes trailing spaces | Ned Batchelder | 2016-01-17 | 1 | -1/+1 | |
| | ||||||
* | A better way to test for warnings. | Ned Batchelder | 2015-10-03 | 1 | -11/+5 | |
| | ||||||
* | Add some tests of bad plugins | Ned Batchelder | 2015-09-07 | 1 | -8/+64 | |
| | ||||||
* | Pragmas for metacoverage | Ned Batchelder | 2015-08-30 | 1 | -1/+1 | |
| | ||||||
* | Add docstring for source_token_lines | Ned Batchelder | 2015-08-10 | 1 | -1/+1 | |
| | ||||||
* | Change the coverage.config item-access syntax to a real method call. | Ned Batchelder | 2015-08-02 | 1 | -14/+14 | |
| | | | | | The square brackets were too cute, and I couldn't figure out how to document them anyway! | |||||
* | Plugins can get built-in python reporting. | Ned Batchelder | 2015-08-01 | 1 | -0/+51 | |
| | ||||||
* | Better spelling. | Ned Batchelder | 2015-07-25 | 1 | -1/+1 | |
| | ||||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -0/+3 | |
| | ||||||
* | Change CoverageData.summary() to CoverageData.line_counts() | Ned Batchelder | 2015-07-16 | 1 | -4/+4 | |
| | ||||||
* | Add a test about claiming a plugin is a file tracer, when it is not. | Ned Batchelder | 2015-07-06 | 1 | -0/+13 | |
| | ||||||
* | Constructing the plugin is the plugin's business | Ned Batchelder | 2015-07-05 | 1 | -17/+18 | |
| | ||||||
* | Change how plugins are initialized. No more Plugin. Now coverage_init. | Ned Batchelder | 2015-07-05 | 1 | -19/+67 | |
| | ||||||
* | Clean up some pylint | Ned Batchelder | 2015-07-03 | 1 | -3/+3 | |
| | ||||||
* | Make sure not to call functions with an error set. | Ned Batchelder | 2015-06-03 | 1 | -1/+5 | |
| | | | | | Python 3.5 is stricter about getting this right. So we have to call PyErr_Print to print and clear the error before calling the warn function. | |||||
* | Finish the plugin error checking in CTracer. | Ned Batchelder | 2015-02-28 | 1 | -0/+51 | |
| | ||||||
* | Handle exceptions from dynamic_source_filename. | Ned Batchelder | 2015-02-26 | 1 | -14/+28 | |
| | | | | This required disabling plugins from the C tracer. | |||||
* | Ensure all FileReporter's have a .name attribute | Ned Batchelder | 2015-02-22 | 1 | -3/+69 | |
| | ||||||
* | Make the test a little nicer. | Ned Batchelder | 2015-02-21 | 1 | -5/+6 | |
| | ||||||
* | Oops, test broken by last commit. | Ned Batchelder | 2015-02-21 | 1 | -3/+7 | |
| | ||||||
* | Make branch=True get along with plugins. | Ned Batchelder | 2015-02-18 | 1 | -2/+27 | |
| | ||||||
* | Ship 4.0a5coverage-4.0a5 | Ned Batchelder | 2015-02-16 | 1 | -0/+2 | |
| | ||||||
* | Protect against misbehaving plugins. | Ned Batchelder | 2015-02-15 | 1 | -0/+109 | |
| | | | | | Also, test some misbehavior, and move our own annotations of plugins into prefixed attributes. | |||||
* | Always make the current directory importable. #358 | Ned Batchelder | 2015-02-13 | 1 | -0/+19 | |
| | ||||||
* | Fix a bad check that was causing mysterious py2/py3 differences | Ned Batchelder | 2015-02-10 | 1 | -0/+10 | |
| | ||||||
* | Plugin support is now only in the CTracer, not in the PyTracer. | Ned Batchelder | 2015-02-09 | 1 | -0/+27 | |
| | ||||||
* | Plugin support is in C tracer as well as Python tracer | Ned Batchelder | 2015-02-08 | 1 | -6/+0 | |
| | ||||||
* | You got me, pylint! | Ned Batchelder | 2015-02-08 | 1 | -1/+1 | |
| | ||||||
* | Plugin modules have to define a Plugin class, or an error happens. | Ned Batchelder | 2015-02-08 | 1 | -6/+9 | |
| | ||||||
* | Pylint | Ned Batchelder | 2015-02-08 | 1 | -4/+4 | |
| | ||||||
* | Test omitted plugin-measured files. | Ned Batchelder | 2015-02-08 | 1 | -1/+9 | |
| | ||||||
* | Re-use CheckUniqueFilenames for test_collector.py | Ned Batchelder | 2015-02-08 | 1 | -26/+6 | |
| | ||||||
* | Fully embrace SkipTest with our own method. | Ned Batchelder | 2015-02-07 | 1 | -2/+1 | |
| | | | | | Also, no test is conditionally defined. They call self.skip if they should be skippped. | |||||
* | Change how we snoop on callbacks, and how we skip tests. | Ned Batchelder | 2015-02-07 | 1 | -90/+98 | |
| | ||||||
* | Set timid=True automatically for plugins | Ned Batchelder | 2015-01-24 | 1 | -0/+15 | |
| | | | | | This is better than asking people to add timid=True to their configs, since this way they won't have to clean it out of their config later. | |||||
* | Change sysinfo to sys_info | Ned Batchelder | 2015-01-24 | 1 | -9/+9 | |
| | ||||||
* | Plugins can provide sysinfo | Ned Batchelder | 2015-01-24 | 1 | -0/+43 | |
| | ||||||
* | Make the plugin test work on Windows | Ned Batchelder | 2015-01-18 | 1 | -1/+4 | |
| | ||||||
* | Collect all the nudgy environment checks into coverage.env | Ned Batchelder | 2015-01-18 | 1 | -12/+2 | |
| | ||||||
* | pep8 | Ned Batchelder | 2015-01-01 | 1 | -11/+11 | |
| | ||||||
* | Move Plugins so that plugin.py is just interface definitions | Ned Batchelder | 2015-01-01 | 1 | -2/+5 | |
| | ||||||
* | For some reason, lowercase 'python' suddenly struck me as odd-looking. Fix ↵ | Ned Batchelder | 2014-12-12 | 1 | -1/+1 | |
| | | | | them. | |||||
* | Make sure check_include isn't called more than once per file. | Ned Batchelder | 2014-11-28 | 1 | -0/+23 | |
| |