diff options
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coverage/config.py b/coverage/config.py index 287844b8..bec7e7a9 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -384,6 +384,9 @@ class CoverageConfig(object): def sanity_check(self): """Check interactions among settings, and raise if there's a problem.""" + 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 if (self.source is not None) and (self.include is not None): raise CoverageException("--include and --source are mutually exclusive") |