Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9983db1
docs: format maas_cli_introspection
AloizioMacedo Apr 13, 2026
c27c8df
docs: add error message when exiting introspection
AloizioMacedo Apr 13, 2026
82515df
docs: format generate.py
AloizioMacedo Apr 13, 2026
a0d36f7
docs: bring in cli docs template to rtd-docs
AloizioMacedo Apr 13, 2026
dd66ca4
docs: add cli scripts to rtd-docs
AloizioMacedo Apr 13, 2026
b2467bc
docs: add cli-docs generation extension
AloizioMacedo Apr 13, 2026
c21ebae
docs: raise Exception for extracted function
AloizioMacedo Apr 13, 2026
5d11aa0
docs: improve CLI template headers
AloizioMacedo Apr 13, 2026
5b5639f
docs: change summary to use keywords.lead
AloizioMacedo Apr 13, 2026
a0d6af5
docs: remove unnecessary line breaks
AloizioMacedo Apr 13, 2026
9e4355b
docs: change joinpath
AloizioMacedo Apr 13, 2026
051d4a1
docs: delete cli-reference files
AloizioMacedo Apr 13, 2026
9aeb607
docs: add cli-reference to .gitignore
AloizioMacedo Apr 13, 2026
a39a32e
docs: add cli index generation
AloizioMacedo Apr 13, 2026
e63d2e6
docs: add dependency for CLI generation
AloizioMacedo Apr 13, 2026
5a25a8e
fix(docs): ignore automatically generated files
AloizioMacedo Apr 13, 2026
d58a615
docs: update copyright notices on scripts
AloizioMacedo Apr 15, 2026
089beaf
docs: fix wrong refs of script due to copying
AloizioMacedo Apr 15, 2026
fda3d27
docs: fix typo in output of cli docs generation
AloizioMacedo Apr 15, 2026
384a77b
docs: bring tests of cli generation as-is
AloizioMacedo Apr 15, 2026
78497f3
docs: simplify imports for test code
AloizioMacedo Apr 15, 2026
b4f1c98
docs: change copyright notice for tests
AloizioMacedo Apr 15, 2026
3756d5d
chore: make minor improvement to tuple unpacking
AloizioMacedo Apr 15, 2026
4aa4f90
docs: fix/remove some tests of docs scripts
AloizioMacedo Apr 15, 2026
ade5408
chore: refactor add_repo_src_to_path
AloizioMacedo Apr 15, 2026
9feb9bb
docs: skip test_get_action_form_registry
AloizioMacedo Apr 15, 2026
8474da4
ci: add tests for docs scripts to docs checks
AloizioMacedo Apr 15, 2026
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ jobs:
- name: Test build
working-directory: "rtd-docs"
run: make html
- name: Run scripts tests
working-directory: "rtd-docs"
run: |
source .sphinx/venv/bin/activate
pip install -r requirements-dev.txt
cd _scripts && python -m pytest .

ci-check:
runs-on: ubuntu-slim
Expand Down
6 changes: 2 additions & 4 deletions docs/usr/tools/cli_page.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@

{% endif %}

{% if keywords_text or (keywords and (keywords.lead or keywords.params)) %}
{% if keywords_text or (keywords and keywords.params) %}
#### **Keywords**
{% if keywords and keywords.lead %}{{ keywords.lead|safe }}

{% elif keywords_text %}{{ keywords_text|safe }}
{% if keywords_text %}{{ keywords_text|safe }}

{% endif %}
{% if keywords and keywords.params %}
Expand Down
Loading
Loading