Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions airflow/cli/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1178,8 +1178,7 @@ class GroupCommand(NamedTuple):
name='test',
help="Execute one single DagRun",
description=(
"Execute one single DagRun for a given DAG and execution date, "
"using the DebugExecutor.\n"
"Execute one single DagRun for a given DAG and execution date.\n"
"\n"
"The --imgcat-dagrun option only works in iTerm.\n"
"\n"
Expand Down
2 changes: 1 addition & 1 deletion airflow/cli/commands/dag_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def dag_list_dag_runs(args, dag=None, session=NEW_SESSION):
@provide_session
@cli_utils.action_cli
def dag_test(args, dag=None, session=None):
"""Execute one single DagRun for a given DAG and execution date, using the DebugExecutor."""
"""Execute one single DagRun for a given DAG and execution date."""
run_conf = None
if args.conf:
try:
Expand Down