[Docs] Wrap `generate_missing_docs` logic in `auto_mocks` block.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
It should be possible to synchronize the documented modules even on installations that don't have all the custom dependencies installed.pull/335/head
parent
e24438980a
commit
debb4f6f36
|
@ -11,6 +11,7 @@ from platypush.message.event import Event
|
|||
from platypush.message.response import Response
|
||||
from platypush.plugins import Plugin
|
||||
from platypush.utils.manifest import Manifests
|
||||
from platypush.utils.mock import auto_mocks
|
||||
|
||||
|
||||
def get_all_plugins():
|
||||
|
@ -159,10 +160,11 @@ def generate_responses_doc():
|
|||
|
||||
|
||||
def main():
|
||||
generate_plugins_doc()
|
||||
generate_backends_doc()
|
||||
generate_events_doc()
|
||||
generate_responses_doc()
|
||||
with auto_mocks():
|
||||
generate_plugins_doc()
|
||||
generate_backends_doc()
|
||||
generate_events_doc()
|
||||
generate_responses_doc()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue