summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
| |
| * Clarify SqliteDbNed Batchelder2019-07-071-3/+5
| |
| * Rough-hewn use of ox_profileNed Batchelder2019-07-071-0/+19
| |
* | Fix typoMin ho Kim2019-07-083-4/+4
|/
* Add tests of bug #806, and ensure it's fixed even if the program ends with ↵Ned Batchelder2019-07-061-4/+5
| | | | an exception
* Return to the original directory after exec'ing a fileDan Hemberger2019-07-061-0/+4
| | | | | | | | | | If the file that is exec'd chdirs to a directory that doesn't exist at the end of the execution, then we will fail to connect to the SQLite database (due to a failing `os.getcwd` command). We can easily fix this if we ensure we are in a directory that exists after executing the foreign code. Returning to the original directory seems to be a sensible choice.
* Revert "Remove a copy of a private macro, and just use it" #809Ned Batchelder2019-07-062-1/+9
| | | | This reverts commit b777c96f885b8d91b5339940a31a6a8ec4bfa3f9.
* HTML: Mark things to show instead of to hide.Ned Batchelder2019-07-064-267/+254
| | | | | | | | | | Also made some other changes along the way: * Scroll bar markers change as the selected categories change. * We don't use css class 'stm' for anything, get rid of it. * Better sass use all around.
* Clean up and test filtering contexts for reportingNed Batchelder2019-07-016-18/+19
|
* Silence a pylint warningNed Batchelder2019-07-011-0/+2
|
* No need for a backslashNed Batchelder2019-07-011-2/+1
|
* Context reporting improvements and testNed Batchelder2019-06-302-2/+20
| | | | | Contexts should only be reported on lines that are marked as executed. The empty outer context is now reported as "(empty)".
* Make show_contexts available to set_option, and document it.Ned Batchelder2019-06-301-1/+2
|
* 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
|
* Split HtmlReporter to get at dataNed Batchelder2019-06-192-75/+87
|
* Move arcz_to_arcs to misc so we can use it elsewhereNed Batchelder2019-06-191-0/+39
|
* This class was simpler as a functionNed Batchelder2019-06-172-16/+12
|
* Remove ShiningPanda hackNed Batchelder2019-06-171-7/+0
|
* A better nameNed Batchelder2019-06-171-6/+6
|
* Fix unicode for Py2Ned Batchelder2019-06-171-6/+6
|
* Use an object instead of a dict for the report dataNed Batchelder2019-06-173-37/+55
|
* Move more into the template globalsNed Batchelder2019-06-171-11/+15
|
* Make the incremental checker a little smarter.Ned Batchelder2019-06-171-71/+74
|
* No need to pass coverage/config separately everywhereNed Batchelder2019-06-176-19/+20
|
* Move css class constants to class-levelNed Batchelder2019-06-171-14/+14
|
* Move HTML concerns out of data_for_fileNed Batchelder2019-06-171-22/+34
|
* Refactor for better testabilityNed Batchelder2019-06-172-49/+53
|
* Get rid of Reporter base classNed Batchelder2019-06-165-97/+67
|
* Refactor text reporting to use the same code paths as other reportsNed Batchelder2019-06-163-65/+55
|
* Remove a property that has been deprecated for three yearsNed Batchelder2019-06-161-10/+0
|
* Reporter base class shouldn't be responsible for directoriesNed Batchelder2019-06-153-13/+11
|
* More sass goodnessNed Batchelder2019-06-132-197/+178
|
* Update the test output css files tooNed Batchelder2019-06-131-2/+5
|
* Use sass for css generation, to get nice hover highlights on linesNed Batchelder2019-06-132-414/+621
|
* Include the template source in the hash to make development easierNed Batchelder2019-06-121-2/+4
|
* Dynamic contexts can be disabled with 'none'Ned Batchelder2019-06-121-3/+4
|
* Add comments to the SQL schema, and keep them when creating the dbNed Batchelder2019-06-111-22/+28
|
* Polishing substitute_variablesNed Batchelder2019-06-111-3/+2
|
* Fix two pylint warningsNed Batchelder2019-06-111-2/+3
|
* Include the count of contexts in the HTML reportNed Batchelder2019-06-102-1/+2
|
* Make --contexts available for HTML reportsNed Batchelder2019-06-103-13/+24
|