Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Note a bug we closed | Ned Batchelder | 2018-10-16 | 1 | -1/+3 | |
| | ||||||
* | Do we need more than 10 tries? | Ned Batchelder | 2018-10-15 | 1 | -1/+1 | |
| | ||||||
* | Use one transaction to speed combining | Ned Batchelder | 2018-10-15 | 2 | -40/+50 | |
| | ||||||
* | MichaĆ suggested this would make the information easier to find. | Ned Batchelder | 2018-10-14 | 2 | -3/+4 | |
| | ||||||
* | Defer using the database when calling set_context #716 | Ned Batchelder | 2018-10-14 | 3 | -14/+19 | |
| | | | | | | | | | | | The collector calls set_context() before any code is run. If we touch the database there, it will get created *very* early. This causes problems with pytest-cov, which will delete those early-created files when erasing data. By deferring the database access until add_lines is called, the data file stays off the disk until the collection is done (or until the context switches), which avoids the problem. | |||||
* | Use --source to ensure tests are showing what we want. | Ned Batchelder | 2018-10-14 | 3 | -8/+10 | |
| | | | | | | | | | | | Travis started having these extra files in coverage reports from our tests: site-packages/pkg_resources/_vendor/six.py site-packages/pkg_resources/extern/__init__.py I don't know why they are being pulled in, but the tests aren't interested in them, and it is throwing off the results. | |||||
* | Have to rethink how to use contexts ourselves | Ned Batchelder | 2018-10-14 | 2 | -4/+0 | |
| | | | | | | Contexts fail when using PYTRACER, and we want to measure coverage under PYTRACER (at least for PyPy), so we need a more sophisticated strategy for how to use contexts. | |||||
* | Missed one file when updating license links | Ned Batchelder | 2018-10-14 | 1 | -1/+1 | |
| | ||||||
* | Not sure how I went for so long without one of these creeping in | Ned Batchelder | 2018-10-14 | 1 | -0/+3 | |
| | ||||||
* | Oops, we were always measuring coverage on Travis | Ned Batchelder | 2018-10-13 | 1 | -1/+1 | |
| | ||||||
* | Fewer conditionals for debug output | Ned Batchelder | 2018-10-13 | 3 | -23/+30 | |
| | ||||||
* | Debugging improvements | Ned Batchelder | 2018-10-13 | 2 | -6/+6 | |
| | ||||||
* | Sphinx complains about app.info now, and what's wrong with print? | Ned Batchelder | 2018-10-07 | 1 | -5/+1 | |
| | ||||||
* | Finish updating requirements | Ned Batchelder | 2018-10-07 | 1 | -3/+3 | |
| | ||||||
* | All-in on contexts for ourselves | Ned Batchelder | 2018-10-07 | 2 | -3/+7 | |
| | ||||||
* | Update dependencies | Ned Batchelder | 2018-10-06 | 6 | -15/+19 | |
| | ||||||
* | Version bump | Ned Batchelder | 2018-10-06 | 3 | -6/+8 | |
| | ||||||
* | Look up names so we don't care about casecoverage-5.0a3 | Ned Batchelder | 2018-10-06 | 1 | -6/+4 | |
| | ||||||
* | Diagnose an appveyor problem | Ned Batchelder | 2018-10-06 | 1 | -0/+4 | |
| | ||||||
* | Prep for 5.0a3 | Ned Batchelder | 2018-10-06 | 4 | -73/+12 | |
| | ||||||
* | Add words about 3.8 | Ned Batchelder | 2018-10-06 | 3 | -2/+8 | |
| | ||||||
* | Finally jumps back to exiting lines | Ned Batchelder | 2018-10-06 | 4 | -45/+151 | |
| | | | | | | In Python 3.8, when a finally clause is run because a line in the try block is exiting the block, the exiting line is visited again after the finally block. | |||||
* | Python 3.8 uses Constant nodes in the AST | Ned Batchelder | 2018-10-04 | 1 | -1/+1 | |
| | ||||||
* | Python 3.6 changed lnotab to signed bytes | Ned Batchelder | 2018-10-04 | 1 | -0/+2 | |
| | ||||||
* | Add 3.8 to tox | Ned Batchelder | 2018-10-04 | 1 | -3/+6 | |
| | ||||||
* | Pin everything | Ned Batchelder | 2018-10-03 | 1 | -0/+1 | |
| | ||||||
* | More tests of qualname_from_frame | Ned Batchelder | 2018-09-30 | 1 | -0/+19 | |
| | ||||||
* | The idea of checking the mro explicitly in qualname_from_frame was Aleksi's | Ned Batchelder | 2018-09-28 | 1 | -0/+1 | |
| | ||||||
* | Simplify | Ned Batchelder | 2018-09-28 | 1 | -6/+2 | |
| | ||||||
* | Lint | Ned Batchelder | 2018-09-28 | 1 | -3/+3 | |
| | ||||||
* | Deal with properties in qualname_from_frame | Ned Batchelder | 2018-09-28 | 2 | -2/+18 | |
| | ||||||
* | Get qualified names for method contexts | Ned Batchelder | 2018-09-28 | 2 | -1/+80 | |
| | ||||||
* | Include doc image files in the sdist | Ned Batchelder | 2018-09-28 | 1 | -1/+1 | |
| | ||||||
* | Move the context determiner to its own file | Ned Batchelder | 2018-09-28 | 2 | -8/+12 | |
| | ||||||
* | Oops, remove noisy debugging code | Ned Batchelder | 2018-09-28 | 1 | -2/+0 | |
| | ||||||
* | Record the sys.argv in the db | Ned Batchelder | 2018-09-28 | 1 | -3/+5 | |
| | ||||||
* | Faster combining | Ned Batchelder | 2018-09-27 | 1 | -7/+13 | |
| | ||||||
* | Add Tidelift logo to README.rst | Ned Batchelder | 2018-09-26 | 2 | -2/+13 | |
| | ||||||
* | Merge branch 'coverage-4.5.1x' into nedbat/tidelift | Ned Batchelder | 2018-09-26 | 3 | -0/+22 | |
|\ | ||||||
| * | A Tidelift logo | Ned Batchelder | 2018-09-26 | 3 | -1/+15 | |
| | | ||||||
| * | Mention Tidelift | Ned Batchelder | 2018-09-26 | 1 | -0/+8 | |
| | | ||||||
| * | So I can switch to this branch without seeing this file each time | Ned Batchelder | 2018-09-26 | 1 | -0/+1 | |
| | | ||||||
* | | Even more clarity for an error message | Ned Batchelder | 2018-09-25 | 2 | -1/+6 | |
| | | ||||||
* | | CoverageSqliteData.__nonzero__: do not create DB | Daniel Hahler | 2018-09-24 | 1 | -0/+2 | |
| | | | | | | | | This makes is more lazy and avoids creating an empty DB unnecessarily. | |||||
* | | Merge branch 'nedbat/dynamic-contexts' | Ned Batchelder | 2018-09-24 | 10 | -50/+220 | |
|\ \ | ||||||
| * | | Minimal docs for dynamic contexts | Ned Batchelder | 2018-09-24 | 2 | -6/+35 | |
| | | | ||||||
| * | | This could come in handy eventually | Ned Batchelder | 2018-09-24 | 1 | -0/+40 | |
| | | | ||||||
| * | | Make static and dynamic contexts work together | Ned Batchelder | 2018-09-23 | 2 | -27/+52 | |
| | | | ||||||
| * | | Dynamic contexts | Ned Batchelder | 2018-09-23 | 7 | -40/+116 | |
| | | | ||||||
| * | | We're calling this static, not global | Ned Batchelder | 2018-09-23 | 1 | -4/+4 | |
| | | |