summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorNed Batchelder <nedbat@gmail.com>2016-12-16 19:04:39 -0500
committerNed Batchelder <nedbat@gmail.com>2016-12-16 19:04:39 -0500
commitb290d2cf78872c4cd514a215fba2da7de87bccbf (patch)
tree346dc2c1d32ecccd3c765c0c2f07607026bc5c8c /tests/test_config.py
parentb33628b4918f47694e89526955cf83b9764f6562 (diff)
parentcadcb4ca7a7d26589e5d42df1b4494636c39ed61 (diff)
downloadpython-coveragepy-b290d2cf78872c4cd514a215fba2da7de87bccbf.tar.gz
Merged in dachary/coverage.py/issue-265 (pull request #105)
--source and --include are mutually exclusive #265
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 6cb5e46..2aa592b 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -239,7 +239,6 @@ class ConfigFileTest(CoverageTest):
branch = 1
cover_pylib = TRUE
parallel = on
- include = a/ , b/
concurrency = thread
source = myapp
plugins =
@@ -329,7 +328,6 @@ class ConfigFileTest(CoverageTest):
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/"])
self.assertEqual(cov.config.omit, ["one", "another", "some_more", "yet_more"])
self.assertEqual(cov.config.precision, 3)