summaryrefslogtreecommitdiff
path: root/coverage/control.py
Commit message (Collapse)AuthorAgeFilesLines
* If a plugin is disabled, don't try to record its file tracers. #1011Ned Batchelder2020-09-131-0/+4
|
* Docs and cleanup for source_pkgsNed Batchelder2020-09-121-1/+8
|
* Create Way to force package even if filepath exists (#1026)Thomas Grainger2020-09-121-2/+2
| | | Fixes: #268
* More bitbucket->github urlsNed Batchelder2020-08-181-2/+1
|
* Report descending sort option (#1005)Jerin Peter George2020-07-031-1/+2
| | | | | | | | | | | | | | | * added descending sort option in coverage report * commandline option for report sort added * Fix tests for pull #1005 * conditional statements improved * sort option help updated with choices * commandline test for sort added Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* --skip-empty now applies to the XML report also. #976nedbat/bug976Ned Batchelder2020-06-301-2/+2
|
* More details on --source filteringNed Batchelder2020-06-291-2/+4
|
* Finish up --precisionNed Batchelder2020-05-121-5/+13
|
* Add --precision switch to report commandTeake Nutma2020-04-301-2/+2
|
* Finish up #967. Thanks, Bernát GáborNed Batchelder2020-04-111-1/+8
|
* Include PID in the atexit logBruno P. Kinoshita2020-01-281-1/+1
|
* Ensure file touching happens if nothing was measured. #884Ned Batchelder2020-01-041-1/+1
|
* Write debug info after initting for start.Ned Batchelder2019-12-291-4/+7
| | | | | | | A few important and confusing things are only created in _init_for_start, and without resetting the write-debug-info flag, we never see them in the debug output. This makes the info appear more than once, but at least we get what we need.
* Fix --debug=sys. #907Ned Batchelder2019-12-281-1/+1
|
* Warn if two things change the dynamic context. #901Ned Batchelder2019-12-271-0/+4
|
* Warnings can be marked to only display once.Ned Batchelder2019-12-271-2/+13
|
* A way to artificially crash coverage, for testing.Ned Batchelder2019-12-231-1/+6
|
* Tweak some coverage details of switch_context codeNed Batchelder2019-12-221-2/+2
|
* run --append --concurrency=multiprocessing didn't use a suffix for the main ↵Ned Batchelder2019-12-171-4/+6
| | | | process. #880
* Be clear about the documented parts of the API.Ned Batchelder2019-12-161-0/+4
|
* Fix two misspellingsNed Batchelder2019-12-081-1/+1
|
* Coverage(data_file=None) means no data file at all. #871Ned Batchelder2019-12-021-6/+21
|
* Experimental: relative_files to support relative file names.Ned Batchelder2019-12-011-5/+9
|
* Clean-ups I noticed while doing something elseNed Batchelder2019-11-171-8/+8
|
* Tweaks to Coverage docstringsNed Batchelder2019-11-101-10/+10
|
* '[run] note' is no longer supported.Ned Batchelder2019-11-091-1/+1
|
* Optionally skip empty files in reportsreybog902019-11-011-3/+8
|
* Sqlite3 info in 'coverage debug sys'Ned Batchelder2019-10-081-0/+2
|
* Context-switching plugins should be listed in debug outputNed Batchelder2019-10-061-0/+1
|
* Add some needed details to the Coverage docstringsNed Batchelder2019-10-061-6/+21
|
* Correct some function names and docstrings. #843Ned Batchelder2019-09-091-2/+3
|
* Reporting methods shouldn't permanently change the configurationNed Batchelder2019-09-011-18/+35
|
* No need for format indexes (mostly)Ned Batchelder2019-09-011-1/+1
|
* Create a JSON reportMatt Bachmann2019-08-311-28/+26
|
* Document another environment variableNed Batchelder2019-07-101-0/+1
|
* Merge branch 'master' into Fix-typoNed Batchelder2019-07-071-2/+3
|\
| * Avoid useless or redundant db operations. Faster.Ned Batchelder2019-07-071-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 typoMin ho Kim2019-07-081-1/+1
|/
* Clean up and test filtering contexts for reportingNed Batchelder2019-07-011-4/+4
|
* A little more about Coverage.currentNed Batchelder2019-06-291-1/+7
|
* New API: Coverage.current() returns the latest started instance.Ned Batchelder2019-06-251-0/+15
|
* No need to pass coverage/config separately everywhereNed Batchelder2019-06-171-4/+4
|
* Dynamic contexts can be disabled with 'none'Ned Batchelder2019-06-121-3/+4
|
* Extend HTML report to to show contexts for every covered line.Stephan Richter2019-06-101-2/+2
|
* Pass the contexts to the report command.Albertas Agejevas2019-06-101-6/+9
|
* Word-smith the html warningNed Batchelder2019-05-261-4/+6
|
* Add warning sectionS.Y. Lee2019-05-261-0/+4
|
* Use pylint 2.xNed Batchelder2019-05-131-2/+1
|
* Docs for new dynamic context techniquesNed Batchelder2019-04-281-1/+3
|
* Expose switch_context in coverage API (#782)Justas Sadzevičius2019-04-281-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