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