Skip to content
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

docs: go full Diátaxis, ingesting the relevant juju.is/docs/sdk documentation #1481

Merged
merged 16 commits into from
Dec 18, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update doc location.
  • Loading branch information
tonyandrewmeyer committed Dec 3, 2024
commit 00b0f7a3f461b72923b4b2e102e4d74f64638af2
5 changes: 4 additions & 1 deletion test/test_infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ def test_ops_testing_doc():
expected_names.add('Container')

found_names: typing.Set[str] = set()
for test_doc in ('docs/harness.rst', 'docs/state-transition-testing.rst'):
for test_doc in (
'docs/reference/api/ops-testing-harness.rst',
'docs/reference/api/ops-testing.rst',
):
with open(test_doc) as testing_doc:
found_names.update({
line.split(prefix, 1)[1].strip()
Expand Down
Loading