Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | A simple test of a test function | Ned Batchelder | 2018-11-11 | 1 | -0/+17 |
| | |||||
* | One last decorator test change for 3.8 | Ned Batchelder | 2018-11-11 | 1 | -2/+10 |
| | |||||
* | Update an HTML gold test due to new peephole optimizations | Ned Batchelder | 2018-11-11 | 3 | -47/+37 |
| | |||||
* | Comparison should always be expected,actual | Ned Batchelder | 2018-11-11 | 1 | -6/+6 |
| | |||||
* | Refactor the XML comparison | Ned Batchelder | 2018-11-11 | 1 | -23/+16 |
| | |||||
* | Comparison is not symmetric, it's expected vs actual | Ned Batchelder | 2018-11-11 | 5 | -42/+44 |
| | |||||
* | Always compare expected then actual | Ned Batchelder | 2018-11-11 | 1 | -17/+17 |
| | |||||
* | Keep test tempdirs distinct, for saving and comparing test output | Ned Batchelder | 2018-11-11 | 1 | -1/+1 |
| | |||||
* | Python 3.8 will optimize away "while True:" | Ned Batchelder | 2018-11-11 | 2 | -10/+29 |
| | |||||
* | Debug-time environment variables can be set with set_env.py | Ned Batchelder | 2018-11-03 | 1 | -0/+1 |
| | |||||
* | Everything should get a docstring | Ned Batchelder | 2018-11-03 | 2 | -0/+2 |
| | |||||
* | Adapt to 3.8's way of tracing decorated functions | Ned Batchelder | 2018-11-03 | 2 | -7/+26 |
| | |||||
* | Use a new event loop | Ned Batchelder | 2018-10-24 | 1 | -2/+2 |
| | |||||
* | Always include a documentation link at the end of help messages | Ned Batchelder | 2018-10-21 | 1 | -6/+14 |
| | |||||
* | Make directories for the data file if needed. #721 | Ned Batchelder | 2018-10-21 | 1 | -0/+9 |
| | |||||
* | One more error case for the command line | Ned Batchelder | 2018-10-19 | 1 | -3/+17 |
| | |||||
* | `[run] command_line` is the command line to use for 'coverage run'. #695 | Ned Batchelder | 2018-10-18 | 1 | -4/+43 |
| | |||||
* | We weren't using this argument | Ned Batchelder | 2018-10-18 | 1 | -2/+2 |
| | |||||
* | This is literally what setdefault is for | Ned Batchelder | 2018-10-18 | 1 | -2/+1 |
| | |||||
* | Clean some lint | Ned Batchelder | 2018-10-17 | 1 | -3/+6 |
| | |||||
* | A test for 'no such table: meta' as in #716. | Ned Batchelder | 2018-10-16 | 1 | -0/+12 |
| | |||||
* | Put this helper in the right place | Ned Batchelder | 2018-10-16 | 1 | -6/+7 |
| | |||||
* | Do we need more than 10 tries? | Ned Batchelder | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | Defer using the database when calling set_context #716 | Ned Batchelder | 2018-10-14 | 1 | -2/+2 |
| | | | | | | | | | | | 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. | ||||
* | 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 |
| | |||||
* | Finally jumps back to exiting lines | Ned Batchelder | 2018-10-06 | 2 | -36/+103 |
| | | | | | | 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. | ||||
* | More tests of qualname_from_frame | Ned Batchelder | 2018-09-30 | 1 | -0/+19 |
| | |||||
* | Lint | Ned Batchelder | 2018-09-28 | 1 | -3/+3 |
| | |||||
* | Deal with properties in qualname_from_frame | Ned Batchelder | 2018-09-28 | 1 | -1/+14 |
| | |||||
* | Get qualified names for method contexts | Ned Batchelder | 2018-09-28 | 1 | -0/+43 |
| | |||||
* | Even more clarity for an error message | Ned Batchelder | 2018-09-25 | 1 | -0/+4 |
| | |||||
* | Make static and dynamic contexts work together | Ned Batchelder | 2018-09-23 | 1 | -26/+45 |
| | |||||
* | Dynamic contexts | Ned Batchelder | 2018-09-23 | 1 | -0/+61 |
| | |||||
* | We're calling this static, not global | Ned Batchelder | 2018-09-23 | 1 | -4/+4 |
| | |||||
* | Merge branch 'nedbat/contexts' | Ned Batchelder | 2018-09-21 | 4 | -32/+136 |
|\ | |||||
| * | Make test check commutivity of .update() | Ned Batchelder | 2018-09-21 | 1 | -37/+52 |
| | | |||||
| * | Combining contexts works | Ned Batchelder | 2018-09-21 | 1 | -0/+59 |
| | | |||||
| * | measured_contexts() and two simple tests of the global context | Ned Batchelder | 2018-09-21 | 2 | -2/+32 |
| | | |||||
| * | Change these tests to not use weird attribute stuffing | Ned Batchelder | 2018-09-21 | 1 | -29/+29 |
| | | |||||
| * | Plumb through context= setting | Ned Batchelder | 2018-09-18 | 1 | -1/+1 |
| | | |||||
* | | Clarify an error message | Ned Batchelder | 2018-09-19 | 1 | -1/+1 |
| | | |||||
* | | Check for import order | Ned Batchelder | 2018-09-13 | 1 | -1/+2 |
| | | |||||
* | | Name decorator components to avoid docstring requirement | Ned Batchelder | 2018-09-09 | 1 | -3/+2 |
|/ | |||||
* | Fix flaky tests | Ned Batchelder | 2018-09-08 | 1 | -0/+6 |
| | | | | | | On Travis, the html delta tests fail randomly, because they were pulling in pytest code, whose coverage results were changing? Not really sure why. | ||||
* | Defaultable variable substitution | Ned Batchelder | 2018-09-08 | 1 | -0/+1 |
| | |||||
* | Strict variable substitution is now an option | Ned Batchelder | 2018-09-08 | 1 | -6/+19 |
| | |||||
* | Move variable substitution to be independent | Ned Batchelder | 2018-09-08 | 1 | -1/+17 |
| | |||||
* | When scrubbing file names, we don't care about slash direction | Ned Batchelder | 2018-09-02 | 1 | -4/+13 |
| |