summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* Use abspath to rc file so that chdir doesn't bork us. #890Ned Batchelder2019-12-232-3/+5
|
* Catch and display expceptions during multiprocessing bootstrap.Ned Batchelder2019-12-231-5/+13
|
* A way to artificially crash coverage, for testing.Ned Batchelder2019-12-232-1/+8
|
* Version bumpNed Batchelder2019-12-221-1/+1
|
* Prep for 5.0.1coverage-5.0.1Ned Batchelder2019-12-221-1/+1
|
* Detect when a 4.x data file is being read. #886Ned Batchelder2019-12-221-1/+14
|
* Tweak some coverage details of switch_context codeNed Batchelder2019-12-222-6/+2
|
* bpo 39114 broke 3.9, but maybe it's their bugNed Batchelder2019-12-211-0/+4
|
* fix context reporting for relative_filesDavid Szotten2019-12-212-4/+3
| | | | | | fix reporting of contexts when `relative_files = True` fixes #900
* Python 3.9a2 reverted how argv[0] is handledNed Batchelder2019-12-211-1/+0
|
* Workaround issue with relpath on Windows. #895Olivier Grisel2019-12-191-1/+8
|
* 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
|
* Bump versionNed Batchelder2019-12-141-1/+1
|
* Prep for 5.0Ned Batchelder2019-12-131-1/+1
|
* Bump versionNed Batchelder2019-12-081-1/+1
|
* Polish up cmd.rstNed Batchelder2019-12-081-1/+1
|
* Fix two misspellingsNed Batchelder2019-12-081-1/+1
|
* Fix a typoNed Batchelder2019-12-071-1/+1
|
* Coverage(data_file=None) means no data file at all. #871Ned Batchelder2019-12-022-6/+35
|
* A helper to get code objectsNed Batchelder2019-12-022-5/+10
|
* Polishing from a lightning talkNed Batchelder2019-12-021-8/+8
|
* The [paths] setting is ordered. #649Ned Batchelder2019-12-011-2/+5
|
* Experimental: relative_files to support relative file names.Ned Batchelder2019-12-014-21/+31
|
* Don't do vars and users in abs_fileNed Batchelder2019-11-282-3/+3
| | | | It meant file names could be incorrectly expanded.
* Adapt to 3.9's way of reporting files using absolute paths.Ned Batchelder2019-11-254-1/+17
|
* Report file names the way Python does: '{}', not {!r}Ned Batchelder2019-11-252-2/+2
|
* Implement __spec__ for files we run. #745 #838Ned Batchelder2019-11-241-15/+40
|
* Clean-ups I noticed while doing something elseNed Batchelder2019-11-172-30/+30
|
* Another detail about numbits_to_numsNed Batchelder2019-11-151-0/+4
|
* Make howitworks currentNed Batchelder2019-11-151-5/+11
|
* Updated register_sqlite_functions() docstringSimon Willison2019-11-121-0/+1
|
* Expose numbits_to_nums() SQL function, refs #868Simon Willison2019-11-121-0/+2
|
* Templite {% joined %} is more convenient than trailing hyphensNed Batchelder2019-11-112-30/+41
|
* Bump versionNed Batchelder2019-11-111-1/+1
|
* Napoleon gets noisy if you use informal typesNed Batchelder2019-11-112-27/+20
|
* Update the man page, and in the process, organize cmdline.pyNed Batchelder2019-11-101-25/+25
|
* 5.0b1 prepNed Batchelder2019-11-101-1/+1
|
* Tweaks to Coverage docstringsNed Batchelder2019-11-101-10/+10
|
* Finish the sqldata.py docstringsNed Batchelder2019-11-102-12/+53
|
* Remove unneeded variable initializationNed Batchelder2019-11-091-3/+0
|
* Make sure dataio logging is happening where it shouldNed Batchelder2019-11-091-0/+2
|
* CoverageData.lines doesn't sort its returned listNed Batchelder2019-11-091-1/+1
|
* sqldata.py docstringsNed Batchelder2019-11-091-31/+118
|
* '[run] note' is no longer supported.Ned Batchelder2019-11-092-9/+3
|
* Meta on linux; makefile target rationalizationNed Batchelder2019-11-081-1/+1
|
* Linux tests are runnableNed Batchelder2019-11-071-1/+1
| | | | PYTHONPYCACHEPREFIX makes the tests 10% faster on 3.8
* A little more metacovNed Batchelder2019-11-051-2/+2
|
* Consolidate the type checking of toml valuesNed Batchelder2019-11-041-22/+12
|
* Refactor the toml logicNed Batchelder2019-11-041-77/+82
| | | | | | | | | - Section names can be dotted. - We only ever read one file, so we don't need to loop over files. - Error messages should show the actual section names where problems happened.