summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Ugh. Setting the xml output file in the .coveragerc file simply didn't ↵Ned Batchelder2012-11-071-1/+0
| | | | | | | | | | | | work. Now it does.
* | | Of course, it's different on Py3.Ned Batchelder2012-11-071-1/+4
| | |
* | | Remove an odd sys.modules entry so that pydoc can find coverage.coverage. #206.Ned Batchelder2012-11-071-0/+6
| | |
* | | Entry pointNed Batchelder2012-11-052-3/+3
| | |
* | | Refactor the command-line code.Ned Batchelder2012-11-041-115/+148
| | |
* | | The old way of getting help text was just weird.Ned Batchelder2012-11-041-16/+16
| | |
* | | Two calls with no error checking replaced by a more convenient Py_BuildValueNed Batchelder2012-11-041-3/+1
| | |
* | | pylint clean-up.Ned Batchelder2012-11-031-0/+2
| | |
* | | Issue #139: Now the report, html, and xml commands take a --fail-under=MIN ↵Ned Batchelder2012-11-031-7/+20
| | | | | | | | | | | | switch, and exit with 2 if the coverage is less than MIN.
* | | The reporting functions now return a float, the total percentage covered.Ned Batchelder2012-11-034-4/+17
|/ /
* | One more way to be picky: no final blank lines.Ned Batchelder2012-10-302-2/+0
| |
* | Fix #163: embarassingly, the wildcards for include and omit didn't work ↵Ned Batchelder2012-10-294-35/+38
| | | | | | | | properly for reporting functions. This is now fixed.
* | Silence pylint a bit.Ned Batchelder2012-10-281-0/+4
| |
* | MergedNed Batchelder2012-10-271-0/+18
|\ \
| * | #205: provide more helpful docstrings for the legacy singleton methods.Ned Batchelder2012-10-261-0/+18
| | |
* | | Minor style tweaksNed Batchelder2012-10-211-1/+1
|/ /
* | Fix #201: wrong default for traces0 being missing.Ned Batchelder2012-10-131-1/+1
| |
* | Bump the version number to 3.5.4Ned Batchelder2012-10-031-1/+1
| |
* | Fix #193: The status.dat file written by py2 can't be read by py3Ned Batchelder2012-10-031-1/+1
| |
* | Update version number to 3.5.3Ned Batchelder2012-09-291-1/+1
| |
* | Fix #197: more decimal places on a CSS fraction eliminates rounding errors ↵Ned Batchelder2012-09-261-2/+2
| | | | | | | | in the HTML line numbers.
* | It's 2012 already.Ned Batchelder2012-09-101-1/+1
| |
* | Fix #194: a file path could have its prefix twice.Ned Batchelder2012-09-081-1/+1
| |
* | Where we deal with .pyc files, also deal with .pyo files. Fixes #195.Ned Batchelder2012-09-061-1/+1
| |
* | A compile error fixed, only shows with TRACE_LOG set.Ned Batchelder2012-09-021-1/+1
| |
* | Fix the py2 case of this macro.Ned Batchelder2012-09-011-1/+1
| |
* | Plug several memory leaks by no longer forgetting to DECREF calls toBrett Cannon2012-08-311-5/+19
| | | | | | | | PyUnicode_AsASCIIString() under Python 3.
* | If fullcoverage is run with the wrong tracer, make it apparent.Ned Batchelder2012-08-301-1/+6
| |
* | Undo Brett's change to the fullcoverage feature: it should only be used with ↵Ned Batchelder2012-08-302-4/+6
| | | | | | | | the C tracer.
* | Make fullcoverage at least run (doesn't work though).Brett Cannon2012-08-172-11/+8
| |
* | 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-1/+10
| | | | | | | | | | | | were executed. Closes #82
* | If the C tracer is missing during testing, make the problem immediately ↵Ned Batchelder2012-07-071-1/+12
| | | | | | | | apparent.
* | With --source=dir, dir/__init__.py need not exist any longer, but ↵Ned Batchelder2012-07-041-3/+11
| | | | | | | | dir/sub/__init__.py still does.
* | Properly deal with files encoded as UTF-8 with BOM. Fixes #179.Ned Batchelder2012-05-143-1/+9
| |
* | Prepare for 3.5.2Ned Batchelder2012-05-031-1/+1
| |
* | Color the buttons on the pyfile page, so they have a visual connection to ↵Ned Batchelder2012-04-282-1/+26
| | | | | | | | the lines they affect.
* | Keep all the Javascript in the .js files.Ned Batchelder2012-04-282-4/+9
| |
* | The [html]extra_css configuration value is a file path to a CSS file that ↵Ned Batchelder2012-04-205-2/+33
| | | | | | | | gets copied into the HTML report.
* | Test (and fix) the not-python errors in base Reporter.Ned Batchelder2012-04-201-1/+1
| |
* | Test (and fix) the summary reporting failures due to not being able to parse ↵Ned Batchelder2012-04-201-1/+1
| | | | | | | | the file.
* | Refactor reporters so the config is part of construction, and is then ↵Ned Batchelder2012-04-196-57/+48
| | | | | | | | available everywhere.
* | Add show_missing to the config file. #173.Ned Batchelder2012-04-182-2/+6
| |
* | Don't complain about files that can't be parsed as Python if they didn't ↵Ned Batchelder2012-04-184-10/+32
| | | | | | | | seem like Python at all. #82.
* | TypoNed Batchelder2012-03-251-1/+1
| |
* | Remove obsolete code paths.Ned Batchelder2012-03-251-20/+13
| |
* | When looking for python files, don't take suspicious ones. Fixes #168.Ned Batchelder2012-03-241-1/+4
| |
* | If a source file has an encoding declaration, use it when producing the ↵Ned Batchelder2012-03-213-49/+146
| | | | | | | | HTML. Fixes issue #157.
* | All the tests pass under PyPy: sys has a bogus __file__, Unicode is 4-byte, ↵Ned Batchelder2012-03-201-1/+7
| | | | | | | | and pypy inserts an extra stack frame into tracebacks.
* | Make tests run on PyPy, and make test_farm more comprehensible.Ned Batchelder2012-03-181-1/+5
| |