Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"""

__requires__ = [
'coherent.docs',
'coherent.test',
]
6 changes: 6 additions & 0 deletions __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ def build() -> None:
runpy.run_module('coherent.build', run_name='__main__')


@passthrough_command
def docs() -> None:
del sys.argv[1]
runpy.run_module('coherent.docs', run_name='__main__')


@app.command(context_settings=dict(allow_extra_args=True))
def tag(
kind_or_name: str,
Expand Down
Loading