summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
| * | message for fail-undernavyad2020-04-191-0/+1
| | |
* | | A few further style tweaks to the HTML reportNed Batchelder2020-06-282-134/+27
| | | | | | | | | | | | | | | | | | - File names are not monospaced - Button styling make on/off a little more pronounced - Fix the alignment of the header on the index page
* | | Merge pull request #931 from vsalvino/darkmodeNed Batchelder2020-06-283-131/+407
|\ \ \ | | | | | | | | Add dark mode, and other design changes for the HTML report.
| * | | Fix testsVince Salvino2020-06-241-1/+1
| | | |
| * | | Add dark mode to HTML output; improve accessibilityVince Salvino2020-02-113-131/+407
| | |/ | |/|
* | | BetterNed Batchelder2020-05-291-1/+1
| | |
* | | Read the config file contents as bytes, it's just for debugging anyway. #990Ned Batchelder2020-05-231-1/+1
| | |
* | | Update pylintNed Batchelder2020-05-193-3/+3
| | |
* | | Make the bare help message a bit more helpfulNed Batchelder2020-05-171-1/+1
| | |
* | | Finish up --precisionNed Batchelder2020-05-122-6/+16
| | |
* | | Add --precision switch to report commandTeake Nutma2020-04-302-2/+12
| |/ |/|
* | Version bumpNed Batchelder2020-04-121-1/+1
| |
* | Prep for v5.1Ned Batchelder2020-04-121-1/+1
| |
* | New JSON info should be reported on individual files also.Ned Batchelder2020-04-111-0/+2
| |
* | Merge pull request #966 from SZVector/json_dump_all_attributesNed Batchelder2020-04-111-0/+2
|\ \ | | | | | | Extending jsonreport.py to also include all branch attributes
| * | Extending jsonreport.py to also include all branch attributesSalvatore Zagaria2020-04-071-0/+2
| | | | | | | | | | | | Signed-off-by: Salvatore Zagaria <salvatore.zagaria@vector.com>
* | | Finish up #967. Thanks, Bernát GáborNed Batchelder2020-04-112-1/+10
| | |
* | | Allow plugins to alter the paths configBernat Gabor2020-04-031-0/+6
|/ / | | | | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* | Thanks, Kjell BradenNed Batchelder2020-03-261-1/+0
| |
* | handle decorators for AsyncFunctionDefs. Closes #964Kjell Braden2020-03-241-0/+2
| |
* | Bump versionNed Batchelder2020-03-161-1/+1
| |
* | Getting ready for 5.0.4Ned Batchelder2020-03-161-1/+1
| |
* | relative_files makes XML store relative paths. #948.Ned Batchelder2020-03-151-3/+5
| |
* | htmlfiles: Handle localStorage not accessibleAbdealiJK2020-02-291-2/+7
| | | | | | | | | | | | | | | | | | In some cases, if based on the browser's settings - localStorage is not accessible, fallback and don't save the sort-columns into localStorage. While the UX is a little inconvenient, at least the page doesn't break - sorting on columns is still possible, but not retained between pages.
* | Complete the docs for source_token_lines. #947Ned Batchelder2020-02-261-0/+1
| |
* | Fix bug with missing negative line numbers on PyPy3 7.1 #943Ned Batchelder2020-02-231-1/+1
|/
* Include PID in the atexit logBruno P. Kinoshita2020-01-281-1/+1
|
* Remove a temporary xfail for 3.9a2Ned Batchelder2020-01-251-4/+0
|
* Move an import to the topNed Batchelder2020-01-131-2/+1
|
* Add temp_store to the SQLite3 debug outputNed Batchelder2020-01-131-0/+2
|
* Correct the use of fetchoneNed Batchelder2020-01-131-3/+20
|
* Bump versionNed Batchelder2020-01-121-1/+1
|
* Prep for 5.0.3Ned Batchelder2020-01-111-1/+1
|
* Include SQLite compile_options in "debug sys"Ned Batchelder2020-01-111-0/+4
|
* Improvements to debugging while chasing #915Ned Batchelder2020-01-112-14/+34
|
* Refine the conditions for tweaking sys.path[0]. Fixes #862Ned Batchelder2020-01-111-9/+18
|
* "coverage debug premain"Ned Batchelder2020-01-111-1/+5
|
* Put the filename calc back in _connect. Fixes #916Ned Batchelder2020-01-071-12/+16
| | | | | | It was moved to __init__ to avoid recalculating, but the directory could have changed, so we need to wait to do the work. Instead, only do the relpath on systems that need it (Windows Py 2).
* Bump versionNed Batchelder2020-01-051-1/+1
|
* Prep for 5.0.2Ned Batchelder2020-01-051-1/+1
|
* Improve the performances of SqliteDb._connectjvoisin2020-01-041-8/+9
| | | | | | | | | Since the self.filename attribute doesn't change during the lifetime of a SqliteDb object, we can move its relpath transformation in the init method, instead of doing it every time _connect is called, resulting in a ~30% performances gain.
* Ensure file touching happens if nothing was measured. #884Ned Batchelder2020-01-041-1/+1
|
* A better name for a thing I will soon deleteNed Batchelder2020-01-041-1/+1
|
* Don't import anything before start(). Fixes #909.Ned Batchelder2020-01-031-21/+31
|
* Don't trace non-encodable file names. #891Ned Batchelder2020-01-011-0/+6
|
* bpo-39114 will be fixed soon.Ned Batchelder2019-12-311-4/+5
|
* xfail a test due to a PyPy3 7.3.0 changeNed Batchelder2019-12-311-5/+8
|
* Move test helpers to tests.helpersNed Batchelder2019-12-311-70/+0
|
* Easier to decipher arcz outputNed Batchelder2019-12-311-0/+31
|
* 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.