summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* One more error case for the command lineNed Batchelder2018-10-191-3/+17
|
* `[run] command_line` is the command line to use for 'coverage run'. #695Ned Batchelder2018-10-181-4/+43
|
* We weren't using this argumentNed Batchelder2018-10-181-2/+2
|
* This is literally what setdefault is forNed Batchelder2018-10-181-2/+1
|
* Clean some lintNed Batchelder2018-10-171-3/+6
|
* A test for 'no such table: meta' as in #716.Ned Batchelder2018-10-161-0/+12
|
* Put this helper in the right placeNed Batchelder2018-10-161-6/+7
|
* Do we need more than 10 tries?Ned Batchelder2018-10-151-1/+1
|
* Defer using the database when calling set_context #716Ned Batchelder2018-10-141-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 Batchelder2018-10-143-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.0a3Ned Batchelder2018-10-061-6/+4
|
* Diagnose an appveyor problemNed Batchelder2018-10-061-0/+4
|
* Finally jumps back to exiting linesNed Batchelder2018-10-062-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_frameNed Batchelder2018-09-301-0/+19
|
* LintNed Batchelder2018-09-281-3/+3
|
* Deal with properties in qualname_from_frameNed Batchelder2018-09-281-1/+14
|
* Get qualified names for method contextsNed Batchelder2018-09-281-0/+43
|
* Even more clarity for an error messageNed Batchelder2018-09-251-0/+4
|
* Make static and dynamic contexts work togetherNed Batchelder2018-09-231-26/+45
|
* Dynamic contextsNed Batchelder2018-09-231-0/+61
|
* We're calling this static, not globalNed Batchelder2018-09-231-4/+4
|
* Merge branch 'nedbat/contexts'Ned Batchelder2018-09-214-32/+136
|\
| * Make test check commutivity of .update()Ned Batchelder2018-09-211-37/+52
| |
| * Combining contexts worksNed Batchelder2018-09-211-0/+59
| |
| * measured_contexts() and two simple tests of the global contextNed Batchelder2018-09-212-2/+32
| |
| * Change these tests to not use weird attribute stuffingNed Batchelder2018-09-211-29/+29
| |
| * Plumb through context= settingNed Batchelder2018-09-181-1/+1
| |
* | Clarify an error messageNed Batchelder2018-09-191-1/+1
| |
* | Check for import orderNed Batchelder2018-09-131-1/+2
| |
* | Name decorator components to avoid docstring requirementNed Batchelder2018-09-091-3/+2
|/
* Fix flaky testsNed Batchelder2018-09-081-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 substitutionNed Batchelder2018-09-081-0/+1
|
* Strict variable substitution is now an optionNed Batchelder2018-09-081-6/+19
|
* Move variable substitution to be independentNed Batchelder2018-09-081-1/+17
|
* When scrubbing file names, we don't care about slash directionNed Batchelder2018-09-021-4/+13
|
* Move fiddly fnmatch logic into its own testable functionNed Batchelder2018-09-021-1/+50
|
* More tests need temp directoriesNed Batchelder2018-09-022-6/+0
|
* SQLite on windows has slightly different messagesNed Batchelder2018-09-022-3/+3
|
* More tests need clear separation of databasesNed Batchelder2018-09-021-13/+13
|
* Have to escape data going into a regex subNed Batchelder2018-08-301-3/+3
|
* Put back an always-on indication of the tracer availableNed Batchelder2018-08-301-2/+13
|
* SQLite storage detects forksNed Batchelder2018-08-271-2/+0
|
* Better sys_info: pid, and a more understandable name.Ned Batchelder2018-08-262-3/+3
|
* Tests of the schema checkingNed Batchelder2018-08-263-15/+37
|
* Another pytest-cov test, for --appendNed Batchelder2018-08-241-1/+10
|
* Merge branch 'nedbat/data-sqlite'Ned Batchelder2018-08-2472-1133/+979
|\
| * Add a test emulating pytest-covNed Batchelder2018-08-241-2/+29
| |
| * Remove now-unused CoverageGoldTest classNed Batchelder2018-08-241-29/+1
| |
| * SQL storage means more tests need temp directoriesNed Batchelder2018-08-241-2/+0
| |
| * Py2-specific gold filesNed Batchelder2018-08-242-29/+23
| |