80fd16
diff -up nose-1.3.7/nose/plugins/cover.py.coverage4 nose-1.3.7/nose/plugins/cover.py
80fd16
--- nose-1.3.7/nose/plugins/cover.py.coverage4	2015-04-04 03:28:20.000000000 -0600
80fd16
+++ nose-1.3.7/nose/plugins/cover.py	2016-11-09 16:16:32.832927855 -0700
80fd16
@@ -187,7 +187,7 @@ class Coverage(Plugin):
80fd16
                     for name, module in sys.modules.items()
80fd16
                     if self.wantModuleCoverage(name, module)]
80fd16
         log.debug("Coverage report will cover modules: %s", modules)
80fd16
-        self.coverInstance.report(modules, file=stream)
80fd16
+        self.coverInstance.report(modules, file=stream, show_missing=True)
80fd16
 
80fd16
         import coverage
80fd16
         if self.coverHtmlDir:
80fd16
@@ -207,7 +207,7 @@ class Coverage(Plugin):
80fd16
         # make sure we have minimum required coverage
80fd16
         if self.coverMinPercentage:
80fd16
             f = StringIO.StringIO()
80fd16
-            self.coverInstance.report(modules, file=f)
80fd16
+            self.coverInstance.report(modules, file=f, show_missing=True)
80fd16
 
80fd16
             multiPackageRe = (r'-------\s\w+\s+\d+\s+\d+(?:\s+\d+\s+\d+)?'
80fd16
                               r'\s+(\d+)%\s+\d*\s{0,1}$')