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 ab5b990 commit 3e6f2caCopy full SHA for 3e6f2ca
pytest_mpl/plugin.py
@@ -756,6 +756,9 @@ def generate_summary_html(self):
756
for test_name in sorted(self._test_results.keys()):
757
summary = self._test_results[test_name]
758
759
+ if not self.results_always and summary['result_image'] is None:
760
+ continue # Don't show test if no result image
761
+
762
if summary['rms'] is None and summary['tolerance'] is not None:
763
rms = (f'<div class="rms passed">\n'
764
f' <strong>RMS:</strong> '
0 commit comments