From 0f555f1da51f4b8a3e9dd381ebb062f7de3bfc08 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Thu, 31 Oct 2019 12:30:58 -0400 Subject: [PATCH] Remove matplotlib.sphinxext.tests from __init__.py The following commit: https://github.com/matplotlib/matplotlib/commit/291599d4b3ea5e00f922820b1e9b79e4e009a2ac moved tests in sphinxext to matplotlib/tests but missed removing matplotlib.sphinxext.tests from matplotlib/__init__.py. This does not seem to affect testing using pytest directly, but fails when invoked using tests.py. --- lib/matplotlib/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py index fb00267fa53f..f70929e47990 100644 --- a/lib/matplotlib/__init__.py +++ b/lib/matplotlib/__init__.py @@ -1302,7 +1302,6 @@ def tk_window_focus(): default_test_modules = [ 'matplotlib.tests', - 'matplotlib.sphinxext.tests', 'mpl_toolkits.tests', ]