File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737
3838 - name : Install dependencies
3939 run : |
40- python -m pip install --upgrade pip
40+ python -m pip install --upgrade pip setuptools wheel
4141 python -m pip install --upgrade -r requirements.txt
4242 python -m pip install --upgrade -r requirements/development.txt
4343 python -m pip install --upgrade -r requirements/documentation.txt
Original file line number Diff line number Diff line change @@ -105,8 +105,10 @@ def test_plugin_config_image(self):
105105 self .assertEqual (warnings , [])
106106
107107 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 )
108+ for config_filepath in self .config_files :
109+ plg_cfg = self .get_plugin_config_from_mkdocs (config_filepath , "rss" )
110+ print (config_filepath )
111+ self .assertIsInstance (plg_cfg , Config )
110112
111113
112114# ##############################################################################
You can’t perform that action at this time.
0 commit comments