-
Notifications
You must be signed in to change notification settings - Fork 0
[WIP] Fix documentation so that 'make doctest' passes #191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
de9b9d1
1d065e2
ebe21a4
93aa838
5f3a6e8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -117,3 +117,6 @@ venv.bak/ | |
|
|
||
| # PyCharm | ||
| .idea/ | ||
|
|
||
| # Generated test files | ||
| kfp_functions.py | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,8 @@ check: install | |
| mypy: install | ||
| uv run mypy ml_orchestrator --config-file pyproject.toml | ||
|
|
||
| doctest: install-docs doc | ||
| doctest: install-docs | ||
| uv run --no-sync sphinx-build -M doctest docs/source docs/build/ -W --keep-going --fresh-env | ||
|
||
|
|
||
| install-docs: | ||
| uv sync --group docs --frozen --no-group dev | ||
|
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the doctest target to depend on both install-docs and doc targets as suggested. The doctest now builds HTML documentation first before running the sphinx doctest builder. Fixed in commit 93aa838.