summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* A test that reproduces #862Ned Batchelder2020-01-102-0/+19
|
* bpo39166 is fixedNed Batchelder2020-01-101-1/+1
|
* tox anypy environmentNed Batchelder2020-01-101-3/+3
|
* Put the filename calc back in _connect. Fixes #916Ned Batchelder2020-01-072-13/+21
| | | | | | 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).
* A test replicating #916Ned Batchelder2020-01-071-2/+11
|
* Link to the change history from the readmeNed Batchelder2020-01-051-0/+8
|
* Every release includes at least one tweak to howtoNed Batchelder2020-01-051-1/+0
|
* Bump versionNed Batchelder2020-01-052-1/+6
|
* Latest sample html reportcoverage-5.0.2Ned Batchelder2020-01-0511-21/+21
|
* Prep for 5.0.2Ned Batchelder2020-01-053-7/+9
|
* Thanks, Julien Voisin for the performance improvementNed Batchelder2020-01-041-0/+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-043-1/+20
|
* Suppress a warning that is not our faultNed Batchelder2020-01-041-0/+1
|
* Pedantic consistency in the changelogNed Batchelder2020-01-041-4/+4
|
* 2019 -> 2020Ned Batchelder2020-01-042-2/+2
|
* A better name for a thing I will soon deleteNed Batchelder2020-01-042-7/+7
|
* Don't import anything before start(). Fixes #909.Ned Batchelder2020-01-032-21/+37
|
* A test for #909Ned Batchelder2020-01-031-0/+28
|
* Don't trace non-encodable file names. #891Ned Batchelder2020-01-013-0/+25
|
* Changing PYVERSION to six elements broke one equality comparisonNed Batchelder2019-12-311-1/+1
|
* bpo-39114 will be fixed soon.Ned Batchelder2019-12-312-6/+7
|
* Adjust other env.PYPY tests to the latest wayNed Batchelder2019-12-314-6/+5
|
* xfail a test due to a PyPy3 7.3.0 changeNed Batchelder2019-12-312-6/+11
|
* Move test helpers to tests.helpersNed Batchelder2019-12-316-102/+104
|
* Easier to decipher arcz outputNed Batchelder2019-12-313-4/+54
|
* An environment for testing the tip of CPythonNed Batchelder2019-12-291-0/+4
|
* 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.
* Use a fixed width for info labelsNed Batchelder2019-12-292-12/+23
| | | | | It makes it look nicer when using --debug=config,sys and it makes it easier to compare output between two different versions.
* Fix --debug=sys. #907Ned Batchelder2019-12-283-1/+13
|
* Warn if two things change the dynamic context. #901Ned Batchelder2019-12-274-0/+27
|
* Somehow the '[run] dynamic_context' setting wasn't in config.rst?Ned Batchelder2019-12-271-0/+5
|
* Warnings can be marked to only display once.Ned Batchelder2019-12-273-6/+28
|
* More issue template optionsNed Batchelder2019-12-241-0/+16
|
* Use abspath to rc file so that chdir doesn't bork us. #890Ned Batchelder2019-12-234-4/+31
|
* Catch and display expceptions during multiprocessing bootstrap.Ned Batchelder2019-12-232-5/+30
|
* A way to artificially crash coverage, for testing.Ned Batchelder2019-12-233-1/+23
|
* Confirm that run_command will show us both stdout and stderrNed Batchelder2019-12-231-0/+11
|
* All tox work directories are under .toxNed Batchelder2019-12-234-5/+4
|
* Correct orderNed Batchelder2019-12-221-3/+3
|
* Version bumpNed Batchelder2019-12-222-1/+6
|
* Prep for 5.0.1coverage-5.0.1Ned Batchelder2019-12-224-7/+12
|
* Re-order windows CI jobs to get more useful information earlierNed Batchelder2019-12-221-38/+38
|
* Detect when a 4.x data file is being read. #886Ned Batchelder2019-12-223-6/+32
|
* Don't need to check for JSON-era bad-data messages any moreNed Batchelder2019-12-222-15/+0
|
* Tweak some coverage details of switch_context codeNed Batchelder2019-12-223-6/+3
|
* One more adjustment for Python 3.9a2Ned Batchelder2019-12-211-1/+1
|
* bpo 39114 broke 3.9, but maybe it's their bugNed Batchelder2019-12-214-2/+25
|
* Cleanup and changelog for #899 #900Ned Batchelder2019-12-213-46/+57
|
* fix context reporting for relative_filesDavid Szotten2019-12-214-40/+65
| | | | | | fix reporting of contexts when `relative_files = True` fixes #900