Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Avoid useless or redundant db operations. Faster. | Ned Batchelder | 2019-07-07 | 2 | -19/+6 | |
| | | | | | | 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. | |||||
* | Can't run the delete-my-directory tests on Windows | Ned Batchelder | 2019-07-06 | 1 | -0/+5 | |
| | ||||||
* | Add tests of bug #806, and ensure it's fixed even if the program ends with ↵ | Ned Batchelder | 2019-07-06 | 1 | -0/+30 | |
| | | | | an exception | |||||
* | HTML: Mark things to show instead of to hide. | Ned Batchelder | 2019-07-06 | 28 | -363/+346 | |
| | | | | | | | | | | 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 reporting | Ned Batchelder | 2019-07-01 | 1 | -3/+18 | |
| | ||||||
* | Context reporting improvements and test | Ned Batchelder | 2019-06-30 | 1 | -5/+62 | |
| | | | | | Contexts should only be reported on lines that are marked as executed. The empty outer context is now reported as "(empty)". | |||||
* | Make a Unicode character more apparent in the source | Ned Batchelder | 2019-06-30 | 1 | -2/+6 | |
| | ||||||
* | Typo | Ned Batchelder | 2019-06-29 | 1 | -1/+1 | |
| | ||||||
* | New API: Coverage.current() returns the latest started instance. | Ned Batchelder | 2019-06-25 | 1 | -0/+31 | |
| | ||||||
* | Don't run contract tests if contracts are disabled | Ned Batchelder | 2019-06-19 | 1 | -1/+6 | |
| | ||||||
* | Move arcz_to_arcs to misc so we can use it elsewhere | Ned Batchelder | 2019-06-19 | 4 | -55/+18 | |
| | ||||||
* | Remove ShiningPanda hack | Ned Batchelder | 2019-06-17 | 1 | -8/+0 | |
| | ||||||
* | Make the incremental checker a little smarter. | Ned Batchelder | 2019-06-17 | 1 | -2/+2 | |
| | ||||||
* | No need to pass coverage/config separately everywhere | Ned Batchelder | 2019-06-17 | 1 | -22/+15 | |
| | ||||||
* | Refactor text reporting to use the same code paths as other reports | Ned Batchelder | 2019-06-16 | 1 | -13/+12 | |
| | ||||||
* | Remove a property that has been deprecated for three years | Ned Batchelder | 2019-06-16 | 1 | -19/+0 | |
| | ||||||
* | More sass goodness | Ned Batchelder | 2019-06-13 | 1 | -27/+1 | |
| | ||||||
* | Update the test output css files too | Ned Batchelder | 2019-06-13 | 1 | -414/+158 | |
| | ||||||
* | This was a copy of an existing test. We need to write some new ones. | Ned Batchelder | 2019-06-10 | 1 | -20/+1 | |
| | ||||||
* | Update tests to use updated APIs. | Stephan Richter | 2019-06-10 | 3 | -20/+29 | |
| | ||||||
* | Support for full qnames for old-style classes. | Stephan Richter | 2019-06-10 | 1 | -1/+1 | |
| | ||||||
* | Add some tests for new methods. | Stephan Richter | 2019-06-10 | 2 | -0/+78 | |
| | ||||||
* | Fix a test. | Stephan Richter | 2019-06-10 | 1 | -1/+1 | |
| | ||||||
* | Fix styling and tests. (The tests are slightly insane with no obvious way to ↵ | Stephan Richter | 2019-06-10 | 1 | -0/+43 | |
| | | | | update the expected output.) | |||||
* | Make sure to report the full Python path for the test function. That way we ↵ | Stephan Richter | 2019-06-10 | 1 | -14/+20 | |
| | | | | can report on namespaces. | |||||
* | Pass the contexts to the report command. | Albertas Agejevas | 2019-06-10 | 1 | -2/+9 | |
| | ||||||
* | Support for multiple, glob-based contexts in result queries. | Stephan Richter | 2019-06-10 | 1 | -15/+15 | |
| | ||||||
* | Refactored HTML tests dropped an assert | Ned Batchelder | 2019-06-10 | 1 | -0/+1 | |
| | ||||||
* | Adapt to optimization tweak in CPython 3.8.0b1 | Ned Batchelder | 2019-06-05 | 1 | -0/+3 | |
| | ||||||
* | Better tests of HTML delta generation | Ned Batchelder | 2019-05-26 | 1 | -41/+66 | |
| | | | | | | The old tests relied on deleting files and seeing them get recreated, which could be misleading. The new tests track which files were opened for writing, which is more accurate. | |||||
* | Use pylint 2.x | Ned Batchelder | 2019-05-13 | 10 | -28/+22 | |
| | ||||||
* | Silence a DeprecationWarning | Ned Batchelder | 2019-05-09 | 1 | -0/+5 | |
| | | | | | | "DeprecationWarning: Use inspect.signature() instead of inspect.getfullargspec()" This started appearing with Python 3.8a4. | |||||
* | One more line to exclude from coverage measurement | Ned Batchelder | 2019-04-30 | 1 | -1/+1 | |
| | ||||||
* | Clean up some style in #782, switch_context | Ned Batchelder | 2019-04-28 | 2 | -28/+23 | |
| | ||||||
* | Fix a few capitalizations | Ned Batchelder | 2019-04-28 | 1 | -2/+2 | |
| | ||||||
* | Expose switch_context in coverage API (#782) | Justas Sadzevičius | 2019-04-28 | 1 | -0/+111 | |
| | | | | | | | | | | | | * Expose switch_context in public API * Test switch_context * Helper method to get full paths to measured files * Get correct file paths on all OS * Note version that introduced this method | |||||
* | Suppress pylint more efficiently | Ned Batchelder | 2019-04-26 | 1 | -13/+12 | |
| | ||||||
* | Old-style classes can report the test_function name. #797 | Ned Batchelder | 2019-04-26 | 1 | -0/+18 | |
| | ||||||
* | Use pipe symbol to join static and dynamic contexts | Ned Batchelder | 2019-04-26 | 2 | -6/+6 | |
| | ||||||
* | Prefer assertRaisesRegex to assertRaises | Ned Batchelder | 2019-04-21 | 7 | -25/+47 | |
| | ||||||
* | Clean up test_plugins.py | Ned Batchelder | 2019-04-21 | 1 | -15/+16 | |
| | ||||||
* | Clean up unused variables | Ned Batchelder | 2019-04-21 | 1 | -10/+7 | |
| | ||||||
* | Fix some formatting, and assert should be expected,actual | Ned Batchelder | 2019-04-21 | 1 | -29/+43 | |
| | ||||||
* | Check for skipping tests before super.setUp | Ned Batchelder | 2019-04-21 | 5 | -9/+9 | |
| | ||||||
* | Don't name new method the same as old attribute | Ned Batchelder | 2019-04-20 | 1 | -2/+2 | |
| | ||||||
* | Plugin support for dynamic context (#783) | Justas Sadzevičius | 2019-04-20 | 2 | -1/+257 | |
| | | | | | | | | | | | | * Introduce a new plugin type: dynamic context labels. * Test dynamic context plugins * Helper method to get full paths to measured files * Get correct filenames on all OS * Improve wording | |||||
* | Fix #708: .filename is private, and don't combine over ourselves | Ned Batchelder | 2019-04-15 | 1 | -2/+2 | |
| | ||||||
* | Add a failing test for #708 | Ned Batchelder | 2019-04-15 | 1 | -0/+15 | |
| | ||||||
* | A thread stress test | Ned Batchelder | 2019-04-09 | 1 | -0/+16 | |
| | | | | (cherry picked from commit bc948ac1a5dca4d0a305a265de157d7505e4a4b2) | |||||
* | Move set_env.py to github.com/nedbat/odds | Ned Batchelder | 2019-04-07 | 1 | -0/+3 | |
| |