summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* merging/unifying test plugin codeholger krekel2009-11-251-0/+36
| | | | | | | | | | | * coverage/testplugin.py contains common test plugin options and pytest hooks (which don't induce "import py") * coverage/nose_coverage.py contains a basic Nose Plugin * test/test_testplugin.py contains a pytest-functional test and a nose-skeleton one. skipped as appropriate. --HG-- rename : coverage/runner.py => coverage/testplugin.py
* Trim line lengthsNed Batchelder2009-11-181-2/+3
|
* Dur! This is a better way to indicate how the tests should run.Ned Batchelder2009-11-187-17/+10
|
* Ignore the branch of an except clause testing its type, since these aren't ↵Ned Batchelder2009-11-172-2/+19
| | | | conceptually branches. Fixes #35.
* Classes shouldn't be marked as branches. Fixes #32.Ned Batchelder2009-11-161-0/+36
|
* Tabs are 8 spaces, as the Python docs dictate. Fixes issue #31.Ned Batchelder2009-11-153-8/+32
|
* Avoid some unneeded tempdir creation in tests.Ned Batchelder2009-11-156-25/+52
|
* Fix a problem with syntax coloring continued lines, and refactor for ↵Ned Batchelder2009-11-152-0/+93
| | | | testability, and add tests. Fixes issue #30.
* Make this test use only new-style commands.Ned Batchelder2009-11-101-1/+1
|
* Annotations on yellow HTML lines with the line numbers not visited.Ned Batchelder2009-11-081-10/+27
|
* Clean up.Ned Batchelder2009-11-081-1/+2
|
* Dict literals shouldn't count as many different exits.Ned Batchelder2009-11-081-0/+18
|
* Shouldn't count multiple (-1,x) arcs as branches.Ned Batchelder2009-11-081-2/+2
|
* Added branch stats to results, and the summary report includes them.Ned Batchelder2009-11-081-20/+40
|
* Make the naming of Results attributes more consistent.Ned Batchelder2009-11-031-6/+9
|
* Split out the report tests, to give them their due.Ned Batchelder2009-11-022-62/+87
|
* Test and refactor Numbers.Ned Batchelder2009-11-021-0/+35
|
* Some lint cleanupNed Batchelder2009-11-021-1/+2
|
* CodeParser couldn't deal with being passed the text directly.Ned Batchelder2009-11-021-1/+5
|
* Updated gold files due to the hover change in the index.html fileNed Batchelder2009-11-022-9/+18
|
* More tests for arc situations I'm uncertain of, but at least this captures ↵Ned Batchelder2009-10-301-0/+53
| | | | the current behavior.
* Shift some tests around.Ned Batchelder2009-10-281-14/+14
|
* Didn't deal with internal returns properly.Ned Batchelder2009-10-271-0/+14
|
* Templite v2, which can handle if's and nested control structures.Ned Batchelder2009-10-251-2/+57
|
* Pylint is a stern taskmasterNed Batchelder2009-10-253-2/+4
|
* Templite now allows comments within curly-hash markers.Ned Batchelder2009-10-251-0/+10
|
* I guess the problem on 3.1 was in my C extension, because the recent changes ↵Ned Batchelder2009-10-251-14/+13
| | | | seem to have fixed this problem.
* Report errors finding source files to execute more nicely. Fixes issue #23.Ned Batchelder2009-10-252-0/+9
|
* Py 2.3 supportNed Batchelder2009-10-251-0/+2
|
* Stupid simplistic not working yet branch reporting in HTMLNed Batchelder2009-10-251-2/+25
|
* Treat missing source files nicer.Ned Batchelder2009-10-251-0/+22
|
* Add an assert_matches method, and tests to prove it works.Ned Batchelder2009-10-252-1/+33
|
* Properly shift multiline references to the first line of the statement. ↵Ned Batchelder2009-10-231-0/+11
| | | | This code is sloppy, I just want it to work first.
* More complexity in figuring out where finally clauses might go.Ned Batchelder2009-10-211-0/+56
|
* Slow progress on adding arc measurement tests.Ned Batchelder2009-10-201-1/+17
|
* More exception flow testing. This stuff is kind of involved...Ned Batchelder2009-10-201-6/+87
|
* Start testing exceptions with arc measurements.Ned Batchelder2009-10-192-9/+45
|
* Keep lines under 80 chars.Ned Batchelder2009-10-171-4/+8
|
* Tidying upNed Batchelder2009-10-162-5/+2
|
* Correct handling of breaks and continues.Ned Batchelder2009-10-161-1/+35
|
* Ad-hoc discovery of opcodes that need to be parsed. BREAK_LOOP is implicit? ↵Ned Batchelder2009-10-161-9/+20
| | | | yikes...
* Start unit testing the arc measurement. In arcs, -1 means enter or exit.Ned Batchelder2009-10-162-13/+143
|
* CamelCase looks weird, switch to underscore_separated.Ned Batchelder2009-10-164-174/+174
|
* More refactoring of the use of analysis objects.Ned Batchelder2009-10-151-6/+6
|
* More tidyingNed Batchelder2009-10-151-39/+57
|
* Tidying upNed Batchelder2009-10-151-1/+0
|
* Don't write arcs if there are none, and an ad-hoc data viewer.Ned Batchelder2009-10-121-2/+3
|
* Don't forget that we disabled a test for short-term reasons.Ned Batchelder2009-10-121-1/+1
|
* Write the arcs to the data file.Ned Batchelder2009-10-121-0/+21
|
* Reduce the amount of data translation by having the tracers record data in a ↵Ned Batchelder2009-10-111-2/+2
| | | | form more like it will be consumed. Also should reduce the amount of work the tracers have to do.