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
This commit is contained in:
Dmitry Tantsur 2020-03-11 10:41:34 +01:00
parent d2a7033117
commit 2b3bef7d1d
1 changed files with 3 additions and 0 deletions

View File

@ -94,6 +94,9 @@ def _init_steps_by_driver():
) )
for plugin in loader: for plugin in loader:
if plugin.name == 'fake':
continue
steps = [] steps = []
for method_name, method in inspect.getmembers(plugin.plugin): for method_name, method in inspect.getmembers(plugin.plugin):