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 d4cd2ae commit 5ca4ca0Copy full SHA for 5ca4ca0
pytest_mpl/plugin.py
@@ -70,6 +70,13 @@ def _download_file(baseline, filename):
70
return filename
71
72
73
+def pytest_report_header(config, startdir):
74
+ import matplotlib
75
+ import matplotlib.ft2font
76
+ return ["Matplotlib: {0}".format(matplotlib.__version__),
77
+ "Freetype: {0}".format(matplotlib.ft2font.__freetype_version__)]
78
+
79
80
def pytest_addoption(parser):
81
group = parser.getgroup("matplotlib image comparison")
82
group.addoption('--mpl', action='store_true',
0 commit comments