Thanks to visit codestin.com Credit goes to github.com
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 ca61716 commit 662ae7dCopy full SHA for 662ae7d
1 file changed
lib/matplotlib/__init__.py
@@ -1506,9 +1506,10 @@ def _init_tests():
1506
from matplotlib import ft2font
1507
if (ft2font.__freetype_version__ != LOCAL_FREETYPE_VERSION or
1508
ft2font.__freetype_build_type__ != 'local'):
1509
- raise ImportError(
+ warnings.warn(
1510
"matplotlib is not built with the correct freetype version to run "
1511
- "tests. Set local_freetype=True in setup.cfg and rebuild.")
+ "tests. Set local_freetype=True in setup.cfg and rebuild. Expect "
1512
+ "many image comparison failures below.")
1513
1514
try:
1515
import nose
0 commit comments