summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* Bump versionNed Batchelder2019-09-211-1/+1
|
* Exit arcs have to be corrected to first linesNed Batchelder2019-09-211-1/+5
| | | | | | | | | | We've long remapped line numbers to the first line of a multi-line statement. But exit line numbers (negative numbers) were not remapped. This meant we were needlessly chasing weirdnesses in implementations. But the actual results of running coverage always remapped results to the first line, so there's no point in tracking the unmapped line numbers in our tests.
* Remove unused attributeNed Batchelder2019-09-201-1/+0
|
* Python tracer supports dynamic contexts. #846Ned Batchelder2019-09-151-4/+34
|
* Polish up substitute_variables based on a lightning talkNed Batchelder2019-09-142-26/+26
|
* Correct some function names and docstrings. #843Ned Batchelder2019-09-092-10/+14
|
* Document the module-level stuff. #837Ned Batchelder2019-09-091-1/+1
|
* A little more in the db schema docsNed Batchelder2019-09-091-3/+4
|
* Updating with an empty data is okNed Batchelder2019-09-031-16/+24
| | | | | With no arc or line data, it used to choose lines arbitrarily, which would fail if an empty data was updating an arc data.
* Need to set a sqlite attribute on a real sqlite connectionNed Batchelder2019-09-031-1/+1
|
* --debug=self now goes on a second line for better readabilityNed Batchelder2019-09-031-2/+2
|
* Log some indication of the script being executedNed Batchelder2019-09-023-4/+18
|
* Logging executemany failed if data was a generatorNed Batchelder2019-09-021-0/+1
|
* cwd logging didn't have pid/tid info on itNed Batchelder2019-09-021-1/+1
|
* Reporting methods shouldn't permanently change the configurationNed Batchelder2019-09-012-19/+41
|
* No need for format indexes (mostly)Ned Batchelder2019-09-019-31/+31
|
* Log an operation before starting itNed Batchelder2019-09-011-1/+1
|
* Make callers debug output easier to use as editor launchesNed Batchelder2019-09-011-1/+1
|
* Tweaks to JSON report docsNed Batchelder2019-08-311-1/+1
|
* Create a JSON reportMatt Bachmann2019-08-317-39/+217
|
* debug=plugin didn't handle all plugin methods. #834Ned Batchelder2019-08-111-0/+14
|
* Improved numbits operationsNed Batchelder2019-08-112-64/+155
| | | | | | | | | * Better names (merge -> union) * More ops (intersection) * Can be registered for SQLite use * Numbits can be empty Also, line_map is a dumb table name. line_bits is marginally better.
* Fix unusual backslash token issue. #822Ned Batchelder2019-08-101-5/+4
|
* Don't need the schema history in the schemaNed Batchelder2019-08-061-8/+9
|
* Version and timestamp in the meta dataNed Batchelder2019-08-061-2/+10
|
* Meta data stored as key/valueNed Batchelder2019-08-061-14/+22
|
* Pudb is a useful thing to have available when neededNed Batchelder2019-08-061-1/+1
|
* Foreign keysNed Batchelder2019-08-061-2/+8
|
* Fix a bug in num_in_numbits.Ned Batchelder2019-08-011-1/+1
|
* Add num_in_numbitsNed Batchelder2019-08-012-2/+18
|
* Add numbits_any_intersectionNed Batchelder2019-07-311-0/+6
|
* A little more discipline for blob convertersNed Batchelder2019-07-311-5/+12
|
* numbits is the new name for the binary line numbersNed Batchelder2019-07-311-18/+27
|
* Refactor numbits into their own filesNed Batchelder2019-07-312-33/+49
|
* Don't be fooled by a class named test_something. Fixes #829Ned Batchelder2019-07-261-1/+3
|
* SimplifyNed Batchelder2019-07-261-10/+3
|
* Don't try to delete a file called ':memory:'Ned Batchelder2019-07-201-0/+2
|
* z-compressed dumps and loadsNed Batchelder2019-07-192-12/+25
|
* Bump versionNed Batchelder2019-07-161-1/+1
|
* Bitmaps for line numbers, 10% of the size.Ned Batchelder2019-07-152-32/+99
|
* :memory: supportNed Batchelder2019-07-151-6/+15
|
* CoverageData.dumps and loads for serializationNed Batchelder2019-07-151-8/+21
|
* Document another environment variableNed Batchelder2019-07-101-0/+1
|
* Merge branch 'master' into isolate_osNed Batchelder2019-07-103-713/+92
|\
| * Remove the JSON data codeNed Batchelder2019-07-103-713/+92
| |
* | Isolate the os module to protect from aggressive mocking interfearing with ↵Matt Bachmann2019-07-091-1/+2
|/ | | | database operations
* SQLite will keep comments that are inside, not outsideNed Batchelder2019-07-081-7/+7
| | | | | This way, ".schema" in the SQLite prompt will show the comments for the tables.
* Merge branch 'master' into Fix-typoNed Batchelder2019-07-073-10/+46
|\
| * Avoid useless or redundant db operations. Faster.Ned Batchelder2019-07-072-5/+20
| | | | | | | | | | | | 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.
| * Log connections properlyNed Batchelder2019-07-071-2/+2
| |