X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lib/matplotlib/testing/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,12 @@ def _image_directories(func):
# namespace package pip installed and run via the nose
# multiprocess plugin or as a specific test this may be
# missing. See https://github.com/matplotlib/matplotlib/issues/3314
assert mods.pop(0) == 'tests'
if mods[0] != 'tests':
raise AssertionError(
"Test does not live in a submodule named 'tests'. Please make "
"sure that there is a parent directory named 'tests' and that "
"it contains a __init__.py file (can be empty).")
mods.pop(0) # ignore the leading 'tests' part of the module name
subdir = os.path.join(*mods)

import imp
Expand Down
X Tutup