Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove special handling of config_file=".coveragerc". #788nedbat/configfile-simplification | Ned Batchelder | 2019-12-04 | 1 | -5/+2 |
| | |||||
* | Coverage(data_file=None) means no data file at all. #871 | Ned Batchelder | 2019-12-02 | 1 | -6/+21 |
| | |||||
* | Experimental: relative_files to support relative file names. | Ned Batchelder | 2019-12-01 | 1 | -5/+9 |
| | |||||
* | Clean-ups I noticed while doing something else | Ned Batchelder | 2019-11-17 | 1 | -8/+8 |
| | |||||
* | Tweaks to Coverage docstrings | Ned Batchelder | 2019-11-10 | 1 | -10/+10 |
| | |||||
* | '[run] note' is no longer supported. | Ned Batchelder | 2019-11-09 | 1 | -1/+1 |
| | |||||
* | Optionally skip empty files in reports | reybog90 | 2019-11-01 | 1 | -3/+8 |
| | |||||
* | Sqlite3 info in 'coverage debug sys' | Ned Batchelder | 2019-10-08 | 1 | -0/+2 |
| | |||||
* | Context-switching plugins should be listed in debug output | Ned Batchelder | 2019-10-06 | 1 | -0/+1 |
| | |||||
* | Add some needed details to the Coverage docstrings | Ned Batchelder | 2019-10-06 | 1 | -6/+21 |
| | |||||
* | Correct some function names and docstrings. #843 | Ned Batchelder | 2019-09-09 | 1 | -2/+3 |
| | |||||
* | Reporting methods shouldn't permanently change the configuration | Ned Batchelder | 2019-09-01 | 1 | -18/+35 |
| | |||||
* | No need for format indexes (mostly) | Ned Batchelder | 2019-09-01 | 1 | -1/+1 |
| | |||||
* | Create a JSON report | Matt Bachmann | 2019-08-31 | 1 | -28/+26 |
| | |||||
* | Document another environment variable | Ned Batchelder | 2019-07-10 | 1 | -0/+1 |
| | |||||
* | Merge branch 'master' into Fix-typo | Ned Batchelder | 2019-07-07 | 1 | -2/+3 |
|\ | |||||
| * | Avoid useless or redundant db operations. Faster. | Ned Batchelder | 2019-07-07 | 1 | -2/+3 |
| | | | | | | | | | | | | Moving operations into the "with self._connect" means less opening and closing of the database. Returning early if there is no data to write avoids writing empty contexts. | ||||
* | | Fix typo | Min ho Kim | 2019-07-08 | 1 | -1/+1 |
|/ | |||||
* | Clean up and test filtering contexts for reporting | Ned Batchelder | 2019-07-01 | 1 | -4/+4 |
| | |||||
* | A little more about Coverage.current | Ned Batchelder | 2019-06-29 | 1 | -1/+7 |
| | |||||
* | New API: Coverage.current() returns the latest started instance. | Ned Batchelder | 2019-06-25 | 1 | -0/+15 |
| | |||||
* | No need to pass coverage/config separately everywhere | Ned Batchelder | 2019-06-17 | 1 | -4/+4 |
| | |||||
* | Dynamic contexts can be disabled with 'none' | Ned Batchelder | 2019-06-12 | 1 | -3/+4 |
| | |||||
* | Extend HTML report to to show contexts for every covered line. | Stephan Richter | 2019-06-10 | 1 | -2/+2 |
| | |||||
* | Pass the contexts to the report command. | Albertas Agejevas | 2019-06-10 | 1 | -6/+9 |
| | |||||
* | Word-smith the html warning | Ned Batchelder | 2019-05-26 | 1 | -4/+6 |
| | |||||
* | Add warning section | S.Y. Lee | 2019-05-26 | 1 | -0/+4 |
| | |||||
* | Use pylint 2.x | Ned Batchelder | 2019-05-13 | 1 | -2/+1 |
| | |||||
* | Docs for new dynamic context techniques | Ned Batchelder | 2019-04-28 | 1 | -1/+3 |
| | |||||
* | Expose switch_context in coverage API (#782) | Justas Sadzevičius | 2019-04-28 | 1 | -0/+16 |
| | | | | | | | | | | | | * Expose switch_context in public API * Test switch_context * Helper method to get full paths to measured files * Get correct file paths on all OS * Note version that introduced this method | ||||
* | This method should be a function in context.py | Ned Batchelder | 2019-04-21 | 1 | -34/+5 |
| | |||||
* | Plugin support for dynamic context (#783) | Justas Sadzevičius | 2019-04-20 | 1 | -2/+37 |
| | | | | | | | | | | | | * Introduce a new plugin type: dynamic context labels. * Test dynamic context plugins * Helper method to get full paths to measured files * Get correct filenames on all OS * Improve wording | ||||
* | Include default encodings in the debug output | Ned Batchelder | 2018-12-23 | 1 | -0/+2 |
| | |||||
* | Make directories for the data file if needed. #721 | Ned Batchelder | 2018-10-21 | 1 | -0/+1 |
| | |||||
* | Helpers for making directories | Ned Batchelder | 2018-10-21 | 1 | -4/+3 |
| | |||||
* | Move the context determiner to its own file | Ned Batchelder | 2018-09-28 | 1 | -8/+1 |
| | |||||
* | Oops, remove noisy debugging code | Ned Batchelder | 2018-09-28 | 1 | -2/+0 |
| | |||||
* | Merge branch 'nedbat/dynamic-contexts' | Ned Batchelder | 2018-09-24 | 1 | -0/+20 |
|\ | |||||
| * | Dynamic contexts | Ned Batchelder | 2018-09-23 | 1 | -0/+20 |
| | | |||||
* | | Fix a versionadded comment | Ned Batchelder | 2018-09-23 | 1 | -2/+2 |
|/ | |||||
* | Change measured_files to a set | Ned Batchelder | 2018-09-21 | 1 | -7/+3 |
| | |||||
* | Set the context in the data | Ned Batchelder | 2018-09-21 | 1 | -3/+2 |
| | |||||
* | Collector has a CoverageData | Ned Batchelder | 2018-09-18 | 1 | -1/+5 |
| | |||||
* | Plumb through context= setting | Ned Batchelder | 2018-09-18 | 1 | -2/+4 |
| | |||||
* | Tidy up | Ned Batchelder | 2018-09-08 | 1 | -1/+0 |
| | |||||
* | Clarify report() arguments | Ned Batchelder | 2018-09-08 | 1 | -2/+12 |
| | |||||
* | Remove aspectlib debugging | Ned Batchelder | 2018-09-04 | 1 | -1/+1 |
| | |||||
* | Put back an always-on indication of the tracer available | Ned Batchelder | 2018-08-30 | 1 | -1/+2 |
| | |||||
* | Show the contents of the config file | Ned Batchelder | 2018-08-30 | 1 | -0/+6 |
| | |||||
* | question marks aren't as good as -none- | Ned Batchelder | 2018-08-27 | 1 | -1/+1 |
| |