summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-12-30 17:30:59 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-12-30 17:30:59 -0500
commit10a4bcbe4854bf274f0be79cabf570c1c2fc55e8 (patch)
treef368a722d0be0b294cb91801923f769177cb642d /tests/test_cmdline.py
parent349866a3d5866e1b3d0c31bc499917eaf68e22cb (diff)
downloadpython-coveragepy-10a4bcbe4854bf274f0be79cabf570c1c2fc55e8.tar.gz
Remove hastiliy short-circuited check for conflicting include and source
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r--tests/test_cmdline.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index cbb1d13..01b0bbc 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -459,13 +459,6 @@ class CmdLineTest(BaseCmdLineTest):
.save()
""")
- def test_bad_run_args_with_both_source_and_include(self):
- return
- # TODO: This check was too simple, and broke a few things:
- # https://bitbucket.org/ned/coveragepy/issues/541/coverage-43-breaks-nosetest-with-coverage
- with self.assertRaisesRegex(CoverageException, 'mutually exclusive'):
- self.command_line("run --include=pre1,pre2 --source=lol,wut foo.py", ret=ERR)
-
def test_bad_concurrency(self):
self.command_line("run --concurrency=nothing", ret=ERR)
out = self.stdout()