From 9a054da1def5026c8f77d6a35a698b1e6721d728 Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Thu, 28 Jul 2016 21:43:53 +0300 Subject: [PATCH] Do not restrict coverage to `matplotlib` module only --- lib/matplotlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py index 6f69f8f4616..7df857447f6 100644 --- a/lib/matplotlib/__init__.py +++ b/lib/matplotlib/__init__.py @@ -1600,7 +1600,7 @@ def _get_extra_test_plugins(): def _get_nose_env(): - env = {'NOSE_COVER_PACKAGE': 'matplotlib', + env = {'NOSE_COVER_PACKAGE': ['matplotlib', 'mpl_toolkits'], 'NOSE_COVER_HTML': 1, 'NOSE_COVER_NO_PRINT': 1} return env