Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #5537 from phobson/fix-test-function
FIX: for broken maplotlib.test function
  • Loading branch information
tacaswell committed Nov 21, 2015
2 parents 392c7c5 + 3259ff0 commit 05cf385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/__init__.py
Expand Up @@ -1550,7 +1550,7 @@ def test(verbosity=1, coverage=False):

# store the old values before overriding
plugins = _get_extra_test_plugins()
plugins.extend([plugin() for plugin in nose.plugins.builtin.plugins])
plugins.extend([plugin for plugin in nose.plugins.builtin.plugins])

manager = PluginManager(plugins=[x() for x in plugins])
config = nose.config.Config(verbosity=verbosity, plugins=manager)
Expand Down

0 comments on commit 05cf385

Please sign in to comment.