We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e01df commit 009ea6dCopy full SHA for 009ea6d
lib/matplotlib/__init__.py
@@ -1570,7 +1570,15 @@ def _init_tests():
1570
warnings.warn(
1571
"matplotlib is not built with the correct FreeType version to run "
1572
"tests. Set local_freetype=True in setup.cfg and rebuild. "
1573
- "Expect many image comparison failures below.")
+ "Expect many image comparison failures below. "
1574
+ "Expected freetype version {0}. "
1575
+ "Found freetype version {1}."
1576
+ "Freetype build type is {2}local".format(
1577
+ ft2font.__freetype_version__,
1578
+ LOCAL_FREETYPE_VERSION,
1579
+ "" if ft2font.__freetype_build_type__ == 'local' else "not "
1580
+ )
1581
1582
1583
try:
1584
import nose
0 commit comments