summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Minor style tweaksNed Batchelder2012-10-211-2/+2
|
* Fix this test on windows.Ned Batchelder2012-09-291-1/+5
|
* Fix #194: a file path could have its prefix twice.Ned Batchelder2012-09-081-0/+7
|
* Add a positive assertion to the recent cant-parse-html testNed Batchelder2012-08-011-0/+1
|
* Make the new test also run in Py3Ned Batchelder2012-07-311-1/+4
|
* Finish the paperwork on Julian's patch.Ned Batchelder2012-07-311-1/+0
|
* Don't report coverage for non-Python source files even if __file__ says they ↵Julian Berman2012-07-311-0/+18
| | | | | | were executed. Closes #82
* If the C tracer is missing during testing, make the problem immediately ↵Ned Batchelder2012-07-071-1/+1
| | | | apparent.
* Add a note to MemoryLeakTest about its difficulties.Ned Batchelder2012-07-041-1/+7
|
* With --source=dir, dir/__init__.py need not exist any longer, but ↵Ned Batchelder2012-07-041-2/+1
| | | | dir/sub/__init__.py still does.
* The gold files for the test for #179.Ned Batchelder2012-05-142-0/+194
|
* Add a test case for bug #179.Ned Batchelder2012-05-113-1/+33
|
* The [html]extra_css configuration value is a file path to a CSS file that ↵Ned Batchelder2012-04-207-1/+491
| | | | gets copied into the HTML report.
* Test (and fix) the not-python errors in base Reporter.Ned Batchelder2012-04-202-4/+46
|
* Test (and fix) the summary reporting failures due to not being able to parse ↵Ned Batchelder2012-04-201-0/+52
| | | | the file.
* Add show_missing to the config file. #173.Ned Batchelder2012-04-181-0/+3
|
* Make the tests pass on 3.3.0a1Ned Batchelder2012-03-251-1/+4
|
* When looking for python files, don't take suspicious ones. Fixes #168.Ned Batchelder2012-03-241-0/+1
|
* Don't need these files, they aren't part of the comparison.Ned Batchelder2012-03-229-1034/+0
|
* If a source file has an encoding declaration, use it when producing the ↵Ned Batchelder2012-03-214-0/+206
| | | | HTML. Fixes issue #157.
* All the tests pass under PyPy: sys has a bogus __file__, Unicode is 4-byte, ↵Ned Batchelder2012-03-202-1/+15
| | | | and pypy inserts an extra stack frame into tracebacks.
* Make tests run on PyPy, and make test_farm more comprehensible.Ned Batchelder2012-03-181-4/+14
|
* Make stuff work in other Python versions. Some stuff isn't *quite* right ↵Ned Batchelder2011-10-302-6/+12
| | | | <2.6. #155
* Make execution with -m match Python more closely.Ned Batchelder2011-10-302-2/+9
|
* Change the name of the C tracer from Tracer to CTracer, as it always should ↵Ned Batchelder2011-09-031-1/+1
| | | | have been.
* Fix the [paths] feature to actually work for reporting.Ned Batchelder2011-09-031-1/+3
|
* And also keep Py3.x happy...Ned Batchelder2011-08-231-2/+2
|
* More windows tweaking.Ned Batchelder2011-08-231-1/+4
|
* Finished implementation of path aliases for combining data files. #17.Ned Batchelder2011-08-232-0/+59
|
* PathAliases munges the fnmatch pattern, and could have accidentally borked ↵Ned Batchelder2011-08-221-0/+7
| | | | the match.
* Cleanups for lint and older PythonsNed Batchelder2011-08-212-15/+21
|
* The machinery to map paths through aliases for merging coverage data from ↵Ned Batchelder2011-08-212-3/+86
| | | | disparate machines. Part of fixing #17.
* CleanupNed Batchelder2011-08-171-4/+4
|
* Properly handle Unicode characters in Python source when creating the HTML ↵Ned Batchelder2011-08-1714-1/+1240
| | | | report (except surrogates come out as pairs of blots in the HTML). Fixes #124 and #144.
* Oh, can't test 'with' in Pythons that don't have it.Ned Batchelder2011-08-111-13/+14
|
* MergeNed Batchelder2011-08-111-0/+16
|\
| * The for-else fix also fixed 'with' statements, and therefore, issue #128.Ned Batchelder2011-08-101-0/+16
| |
* | Control the test better; don't use os when cleaning up the pathNed Batchelder2011-08-082-21/+26
|/
* A fullcoverage tracer that works. Events are stashed, then replayed when ↵Ned Batchelder2011-08-082-1/+21
| | | | coverage is started.
* You can include files in the Python installation, and they will be measured.Ned Batchelder2011-08-031-5/+22
|
* Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-08-022-2/+36
|\
| * The number of missed branches reported on the HTML summary page didn't match ↵Ned Batchelder2011-08-021-0/+33
| | | | | | | | the number on the file page.
| * Shorten a lineNed Batchelder2011-08-021-2/+3
| |
* | for-else constructs are handled properly, avoiding bogus partial branch ↵Ned Batchelder2011-07-043-14/+15
|/ | | | warnings. Fixes issue #122. Bonus irony: this also makes while 1 loops automatically understood better too.
* A test and a fix for issue #122, maybe?Ned Batchelder2011-07-041-0/+15
|
* 2.7's unittest is more helpful with long messages.Ned Batchelder2011-07-041-0/+3
|
* Update the gold files for HTML since the index file now has keyboard help.Ned Batchelder2011-06-269-0/+150
|
* HTML report hotkeys work differently if the current chunk is off-screen. A ↵Ned Batchelder2011-06-261-2/+43
| | | | chunk on-screen will be selected next.
* Un-tabNed Batchelder2011-06-231-9/+9
|
* Latest qunit code, seems to fix the crazy scrolling behavior in qunit ↵Ned Batchelder2011-06-232-83/+99
| | | | results page.