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 08f2486 commit d7a0602Copy full SHA for d7a0602
1 file changed
tests/test_config.py
@@ -105,8 +105,10 @@ def test_plugin_config_image(self):
105
self.assertEqual(warnings, [])
106
107
def test_plugin_config_through_mkdocs(self):
108
- plg_cfg = self.get_plugin_config_from_mkdocs(Path("mkdocs.yml"), "rss")
109
- self.assertIsInstance(plg_cfg, Config)
+ for config_filepath in self.config_files:
+ plg_cfg = self.get_plugin_config_from_mkdocs(config_filepath, "rss")
110
+ print(config_filepath)
111
+ self.assertIsInstance(plg_cfg, Config)
112
113
114
# ##############################################################################
0 commit comments