diff --git a/doc/source/_exts/automated_steps.py b/doc/source/_exts/automated_steps.py index db242487f8..4cf4349746 100644 --- a/doc/source/_exts/automated_steps.py +++ b/doc/source/_exts/automated_steps.py @@ -94,6 +94,9 @@ def _init_steps_by_driver(): ) for plugin in loader: + if plugin.name == 'fake': + continue + steps = [] for method_name, method in inspect.getmembers(plugin.plugin):