summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Reports now emphasize missed lines over executed lines, since those are more ↵Ned Batchelder2010-03-133-13/+13
| | | | | | | | | | | | helpful for directing developers to improved test coverage.
* | | Minor cleanupNed Batchelder2010-03-131-3/+3
| | |
* | | I like this punctuation betterNed Batchelder2010-03-131-1/+2
| | |
* | | Merged Ben Finney's use-os-path-module fixes (again?)Ned Batchelder2010-03-131-2/+4
|\ \ \
| * | | Use ‘os.path.commonprefix’ to find the “relative directory” at the ↵Ben Finney2010-02-031-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | start of a path. --HG-- branch : use-os-path-module
* | | | Bump version numberNed Batchelder2010-03-131-1/+1
| | | |
* | | | Deal properly with dos-ended source files while tokenizing. Fixes issue #53.Ned Batchelder2010-03-131-1/+2
| | | |
* | | | Don't let parallel=True prevent reporting. Fixes #49.Ned Batchelder2010-03-061-9/+10
| | | |
* | | | We'll call this 3.3.1Ned Batchelder2010-02-281-1/+1
| | | |
* | | | If the user's code calls sys.exit(), honor the request and exit with that ↵Ned Batchelder2010-02-282-6/+15
| | | | | | | | | | | | | | | | status. Fixes issue #50.
* | | | When emulating the Python interpreter, don't print SystemExits tracebacks.Ned Batchelder2010-02-241-1/+6
| | | |
* | | | Move the version number to 3.3Ned Batchelder2010-02-241-1/+1
| | | |
* | | | Docs functionally complete for 3.3Ned Batchelder2010-02-241-2/+3
| | | |
* | | | Python source files that don't end with a newline can now be executed, ↵Ned Batchelder2010-02-222-10/+17
| | | | | | | | | | | | | | | | fixing #47.
* | | | SpacesNed Batchelder2010-02-221-3/+3
| | | |
* | | | Fiddling with docs for 3.3Ned Batchelder2010-02-221-6/+13
| | | |
* | | | Lint cleanupsNed Batchelder2010-02-201-1/+3
| | | |
* | | | If the product code throws an exception, 'coverage run' now produces the ↵Ned Batchelder2010-02-193-4/+28
| | | | | | | | | | | | | | | | same traceback as 'python' would, without the coverage-internal frames distracting from your code.
* | | | Clean up the lst += string stuff, whereby string being iterable means each ↵Ned Batchelder2010-02-073-21/+21
| | | | | | | | | | | | | | | | char is added as an element of the list. Also, apply the 'join is better than append' rule to other places, where, alas, it doesn't seem to have the same magic effect.
* | | | You know that thing they say about how ''.join(slist) is faster than s1 += ↵Ned Batchelder2010-02-071-2/+2
| | | | | | | | | | | | | | | | s? It's really true. This one change removed 90% of the templite time, and 59% of the html report generation time.
* | | | Update a few copyrights to 2010.Ned Batchelder2010-01-101-1/+1
| | | |
* | | | File-closing logic was wrong.Ned Batchelder2010-01-091-5/+7
| | | |
* | | | XML output file is configurable in .rc file.Ned Batchelder2010-01-093-5/+17
| | | | | | | | | | | | | | | | | | | | --HG-- rename : test/farm/html/run_a_xml.py => test/farm/html/run_a_xml_1.py
* | | | HTML output directory is now settable in the .rc file.Ned Batchelder2010-01-062-3/+12
| | | |
* | | | tidyNed Batchelder2010-01-031-1/+1
| | | |
* | | | Parallel mode can be set from the .coveragerc file.Ned Batchelder2010-01-035-14/+36
| | | |
* | | | SpacingNed Batchelder2010-01-021-7/+0
| | | |
* | | | Tidy up the config code.Ned Batchelder2009-12-301-8/+10
| | | |
* | | | Lint-friendly help noop function.Ned Batchelder2009-12-291-1/+5
| | | |
* | | | Delete files combined during 'coverage combine'. Fixes issue #40.Ned Batchelder2009-12-291-0/+2
| | | |
* | | | ignore_errors can be set in [report].ignore_errorsNed Batchelder2009-12-292-12/+29
| | | |
* | | | Forgot one place to use omit= from the config file.Ned Batchelder2009-12-281-1/+4
| | | |
* | | | Omit prefixes can be specified in the config file.Ned Batchelder2009-12-282-6/+27
| | | |
* | | | Add more tests of omitting files during HTML reporting, and a better way to ↵Ned Batchelder2009-12-271-0/+2
| | | | | | | | | | | | | | | | enable re-importing modules during test_farm tests.
* | | | Simplify and test the default pragma exclusion.Ned Batchelder2009-12-271-2/+2
| | | |
* | | | COVERAGE_PROCESS_START now is the name of the rc file, and we use it to ↵Ned Batchelder2009-12-261-5/+3
| | | | | | | | | | | | | | | | measure our own coverage.
* | | | process_startup is a better name for the new function.Ned Batchelder2009-12-232-4/+9
| | | |
* | | | A way to start coverage when Python starts, to help with measuring coverage ↵Ned Batchelder2009-12-233-5/+26
| | | | | | | | | | | | | | | | in subprocesses.
* | | | It helps if you exclude the proper pragma comment.Ned Batchelder2009-12-201-1/+1
| | | |
* | | | Jumps to jumps could make loops look like they go places they really don't, ↵Ned Batchelder2009-12-201-1/+14
| | | | | | | | | | | | | | | | so start new chunks for every absolute jump. Fixes issue #39.
* | | | Add tests for 'coverage debug data'Ned Batchelder2009-12-191-0/+1
| | | |
* | | | version_info is a nicer way to check Python versions than hexversion is.Ned Batchelder2009-12-134-4/+4
| | | |
* | | | Keep it working on 3.x also.Ned Batchelder2009-12-131-1/+1
| | | |
* | | | Rename the config file option for excluding source lines, in prep for ↵Ned Batchelder2009-12-131-2/+2
| | | | | | | | | | | | | | | | excluding files.
* | | | Tidy up the command line notes.Ned Batchelder2009-12-091-17/+17
| | | |
* | | | A --rcfile argument to specify the config file.Ned Batchelder2009-12-061-14/+19
| | | |
* | | | Clean up HTML files.Ned Batchelder2009-12-064-133/+133
| | | |
* | | | Make the two html templates more similar in style.Ned Batchelder2009-12-063-106/+110
| | | |
* | | | Add a numbered id to the line parts, for future use. Put the percentage in ↵Ned Batchelder2009-12-061-3/+3
| | | | | | | | | | | | | | | | the title of file reports.
* | | | Make it a real 3.3 versionNed Batchelder2009-12-051-1/+1
| | | |