From 380cd54dc96a5476ce61cadd014deb35588dcde9 Mon Sep 17 00:00:00 2001 From: Andrii Roiko Date: Tue, 4 Aug 2026 21:16:37 +0300 Subject: [PATCH] Fix Sphinx error in CLI reference docs for dags test command The CLI reference docs page is generated from the argparse help strings, and the dags test description was not valid reStructuredText: without a blank line before the numbered list, docutils reported "Unexpected indentation" and Sphinx rendered a System Message error box instead of the usage examples on cli-and-env-variables-ref.html. --- airflow-core/src/airflow/cli/cli_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow-core/src/airflow/cli/cli_config.py b/airflow-core/src/airflow/cli/cli_config.py index 46a0ebfa391f0..a4c0bc02a1b96 100644 --- a/airflow-core/src/airflow/cli/cli_config.py +++ b/airflow-core/src/airflow/cli/cli_config.py @@ -1387,6 +1387,7 @@ class GroupCommand(NamedTuple): "Execute one single DagRun for a given DAG and logical date.\n" "\n" "You can test a DAG in three ways:\n" + "\n" "1. Using default bundle:\n" " airflow dags test \n" "\n"