summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-10-04 11:08:36 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-10-04 11:08:36 -0400
commit5205da079a8e099f9f5c6895b2cd634fc512fc55 (patch)
tree75af617e7645f2ba8070f41659b919279bf3daf9 /tests/test_config.py
parent6bf4946e0bc8599a1258c5107f7eece2efa70925 (diff)
downloadpython-coveragepy-git-5205da079a8e099f9f5c6895b2cd634fc512fc55.tar.gz
Combining now issues warnings on unreadable files, unconditionally
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 6d6c7f80..93a7bbf6 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -235,9 +235,6 @@ class ConfigFileTest(CoverageTest):
plugins.a_plugin
plugins.another
- [{section}combine]
- ignore_errors = True
-
[{section}report]
; these settings affect reporting.
exclude_lines =
@@ -304,8 +301,6 @@ class ConfigFileTest(CoverageTest):
self.assertTrue(cov.config.parallel)
self.assertEqual(cov.config.concurrency, "thread")
- self.assertTrue(cov.config.ignore_combine_errors)
-
self.assertEqual(cov.get_exclude_list(), ["if 0:", r"pragma:?\s+no cover", "another_tab"])
self.assertTrue(cov.config.ignore_errors)
self.assertEqual(cov.config.include, ["a/", "b/"])