summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixes two overlookeds self.skip callsNed Batchelder2016-06-251-2/+2
|
* Combine no longer appends by defaultNed Batchelder2016-06-252-4/+7
| | | | | | | | | | | Combine used to always load an existing .coverage file. This lead to confusing results and extra tox-clean steps. Now the default is to not load the existing file, though a new --append switch on coverage combine gets you that behavior if you need it. This also pointed up an issue with concurrency=multiprocessing, which is that the child processes automatically used parallel=True, but the parent process did not. Now concurrency=multiprocessing implies parallel=True.
* Prevent subprocess measurement from measuring coverage commands. #492Ned Batchelder2016-06-241-2/+0
|
* Clean up the previous commit that adds a test for #492Ned Batchelder2016-06-241-2/+5
|
* Cleanup test case #492Dan Riti2016-06-241-0/+7
|
* Add test case that demonstrates problem #492Dan Riti2016-06-241-3/+29
|
* Another use of try_execfile.py to adjustNed Batchelder2016-06-122-5/+4
|
* Move try_execfile.py to an unambiguous placeNed Batchelder2016-06-123-16/+24
| | | | | | | | | | | | Where it was, we were counting on "tests" referring to coverage.py's own tests directory, but a -e install of a helper like unittest-mixins could provide a tests directory, which prevented the imports we needed for the tests. Moving try_execfile.py to a new subdirectory with a less-common name solves the problem. --HG-- rename : tests/try_execfile.py => tests/modules/process_test/try_execfile.py
* Use standard skipTest, which unittest-mixins will override.Ned Batchelder2016-06-1210-30/+23
|
* Properly handle invalid sorting optionNed Batchelder2016-06-091-3/+12
|
* Fix these new tests to really test the codeNed Batchelder2016-06-091-17/+61
|
* Move test_summary_class.py into test_summary.pyNed Batchelder2016-06-082-67/+60
|
* Clean up #199Ned Batchelder2016-06-081-20/+21
|
* Make report's 'sort' option available only via the configuration file, not ↵Dan Wandschneider2016-06-081-6/+1
| | | | available on the command line.
* Use caoverage.py's canonical backwards compatibility infrastructure in new test.Dan Wandschneider2016-06-081-18/+5
|
* Fix test failures in Python 2.6Dan Wandschneider2016-06-081-6/+20
|
* Issue 199: Sort text report.Dan Wandschneider2016-06-082-1/+18
| | | | | | | | | | | | | | Allows sorting of the text report based on: Name, Stmts, Miss, Cover Tested on Mac with Python 2.7.11 and Python 3.5 Help message for the new option is: python -m coverage report -h ... --sort=SORT Sort report by a column. Valid values are: Name, Stmts, Miss, Cover. ...
* Add unit-level test for the SummaryReporterDan Wandschneider2016-06-081-0/+53
| | | | Tests configuration of the report method of SummaryReader
* Oops, broke a test.Ned Batchelder2016-06-021-1/+1
|
* Emit a warning when an invalid file is detected with ignore_errors=true.Matthew Boehm2016-06-021-0/+14
| | | | | Previously, when an invalid file was encountered, it would be silently ignored.
* Fix __main__.py showing up in help outputscottbelden2016-06-021-0/+9
|
* Add support for `coverage debug config`Matthew Boehm2016-06-021-1/+7
| | | | | Previously, coverage --debug=config worked, but `coverage debug config` didn't. Fixes #454
* Remove the test helpers into their own repoNed Batchelder2016-06-014-117/+7
|
* Clean upsNed Batchelder2016-05-201-1/+4
|
* Restore Reporter.file_reporters, with a deprecation warning.Ned Batchelder2016-05-201-0/+16
|
* Correct the defaults for coverage.report(show_missing=None, skip_covered=None)Ned Batchelder2016-05-083-4/+4
|
* Don't get confused by namespace packages #456Ned Batchelder2016-05-081-0/+21
|
* readthedocs.io nowNed Batchelder2016-04-3038-41/+41
|
* Use ->exit for missed branches in the textual report. #469Ned Batchelder2016-04-181-3/+2
|
* No need to break these linesNed Batchelder2016-04-121-4/+2
|
* A better way to indicate the presence of the C extensionNed Batchelder2016-03-291-2/+2
|
* Show the tracer class in help output. #479Ned Batchelder2016-03-281-0/+5
|
* Better descriptions of missing one-line executables. Part of #475Ned Batchelder2016-03-272-5/+35
|
* Entry arcs now use the negative first line of the code object instead of -1.Ned Batchelder2016-03-022-46/+46
|
* Better branch-missed messages for lambdas.Ned Batchelder2016-02-252-0/+34
|
* Add an explicit test of the source= rc setting.Ned Batchelder2016-02-211-0/+2
|
* Templite can now collapse whitespace after tagsNed Batchelder2016-02-151-0/+22
|
* Pick off some lintNed Batchelder2016-02-152-5/+12
|
* Add missing branch explanations for while-loopNed Batchelder2016-02-151-1/+14
|
* Skip a test on 2.6Ned Batchelder2016-02-151-0/+4
|
* More missing-branch descriptionsNed Batchelder2016-02-151-1/+12
|
* More work on better missing branch descriptionsNed Batchelder2016-02-142-5/+35
|
* Make these tests just a little easier to writeNed Batchelder2016-02-131-9/+9
|
* Add missing branch descriptions for handling exceptionsNed Batchelder2016-02-131-0/+20
|
* More work on the better missed-branch messagesNed Batchelder2016-02-131-0/+28
|
* More progress on better missed-branch descriptionsNed Batchelder2016-02-132-6/+8
|
* Fix a type error in a new testNed Batchelder2016-02-111-1/+1
|
* missing_arc_description is better than arc_destination_description. One test ↵Ned Batchelder2016-02-081-0/+32
| | | | broken.
* Didn't mean to leave that there, of courseNed Batchelder2016-02-071-1/+0
|
* Properly handle {**{'a':1}} literalsNed Batchelder2016-02-071-0/+33
|