From 3beff4dd6fceaa0561ac4fc45d3bd53c561259be Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 24 Jul 2026 18:29:50 -0400 Subject: [PATCH] docs: mention missing pages in category indexes The task runners guide and the testing recommendations page were not mentioned in their category index prose after the `pages/` reorg. Assisted-by: ClaudeCode:claude-opus-5 --- docs/guides/index.md | 7 ++++--- docs/principles/index.md | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/guides/index.md b/docs/guides/index.md index d57098c4..9d53da01 100644 --- a/docs/guides/index.md +++ b/docs/guides/index.md @@ -18,9 +18,9 @@ A section on CI follows, with a [general setup guide][gha_basic], and then two choices for using CI to distribute your package, one for [pure Python][gha_pure], and one for [compiled extensions][gha_wheels]. You can read about setting up good tests on the [pytest page][pytest], with -[coverage][]. There's also a page on setting up [docs][], as well as pages on -[security][] best practices and information on using [agentic AI][ai] -responsibly. +[coverage][]. There's also a page on setting up [docs][], a page on +[task runners][tasks], as well as pages on [security][] best practices and +information on using [agentic AI][ai] responsibly. :::{tip} New project template Once you have completed the guidelines, there is a @@ -48,6 +48,7 @@ WebAssembly! All checks point to a linked badge in the guide. [gha_pure]: /guides/gha_pure.md [gha_wheels]: /guides/gha_wheels.md [security]: /guides/security.md +[tasks]: /guides/tasks.md [ai]: /guides/ai.md [pytest]: /guides/pytest.md [right in the guide]: /guides/repo_review.md diff --git a/docs/principles/index.md b/docs/principles/index.md index d68e419a..6a82ca95 100644 --- a/docs/principles/index.md +++ b/docs/principles/index.md @@ -3,10 +3,12 @@ These pages are focused on designing good software, with a focus on end-user research code. [Process recommendations][] discusses the process of writing software, and [Design recommendations][] covers some tips about writing easy to -read and maintain code. +read and maintain code. [Testing recommendations][] covers how to build a test +suite for your project. [Process recommendations]: /principles/process.md [Design recommendations]: /principles/design.md +[Testing recommendations]: /principles/testing.md ```{tableofcontents}