From: Vladimír Vondruš Date: Sun, 15 Sep 2024 21:49:52 +0000 (+0200) Subject: m.math: properly include the m.components plugin in all tests. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=6954e821252953c70fde700d6ad22c3a3a6a0f3d;p=blog.git m.math: properly include the m.components plugin in all tests. So when just one is run, it doesn't fail on something silly like the .. math-figure:: directive not existing. --- diff --git a/plugins/m/test/test_math.py b/plugins/m/test/test_math.py index 4a7c447a..91e3f966 100644 --- a/plugins/m/test/test_math.py +++ b/plugins/m/test/test_math.py @@ -51,7 +51,7 @@ class Math(PelicanPluginTestCase): def test_code_fallback(self): self.run_pelican({ - 'PLUGINS': ['m.htmlsanity', 'm.math'], + 'PLUGINS': ['m.htmlsanity', 'm.components', 'm.math'], 'M_MATH_RENDER_AS_CODE': True })