From 2b3bef7d1dd16c3aaf78bbe878e04b715ad58445 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Wed, 11 Mar 2020 10:41:34 +0100 Subject: [PATCH] Skip clean steps from 'fake' interfaces in the documentation They are not targeted at operators, and the title 'fake cleaning steps' is confusing. Change-Id: Ibe42ede09fcbc5d8c16c8b1996f6c4055ad6a138 --- doc/source/_exts/automated_steps.py | 3 +++ 1 file changed, 3 insertions(+) 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):