diff --git a/docs/source/get_started/new_project.md b/docs/source/get_started/new_project.md index 15effe4169..efc25c6e0d 100644 --- a/docs/source/get_started/new_project.md +++ b/docs/source/get_started/new_project.md @@ -112,7 +112,7 @@ The nodes are stored in `src/get_started/nodes.py`: ### Visualise the project -This is a swift introduction to show how to visualise the project with Kedro-Viz. See the [visualisation documentation](../visualisation/kedro-viz_visualisation) for more detail. +This is a swift introduction to show how to visualise the project with Kedro-Viz. See the [visualisation documentation](../visualisation/kedro-viz_visualisation) for more detail. The Kedro-Viz package needs to be installed separately as it is not part of the standard Kedro installation: diff --git a/kedro/framework/cli/pipeline.py b/kedro/framework/cli/pipeline.py index b648e6608b..b7f7fb32c7 100644 --- a/kedro/framework/cli/pipeline.py +++ b/kedro/framework/cli/pipeline.py @@ -110,12 +110,6 @@ def create_pipeline( _copy_pipeline_configs(result_path, project_conf_path, skip_config, env=env) click.secho(f"\nPipeline '{name}' was successfully created.\n", fg="green") - click.secho( - f"To be able to run the pipeline '{name}', you will need to add it " - f"""to 'register_pipelines()' in '{package_dir / "pipeline_registry.py"}'.""", - fg="yellow", - ) - @command_with_verbosity(pipeline, "delete") @click.argument("name", nargs=1, callback=_check_pipeline_name) diff --git a/tests/framework/cli/pipeline/test_pipeline.py b/tests/framework/cli/pipeline/test_pipeline.py index 3e3e0d8ba6..4bdd965526 100644 --- a/tests/framework/cli/pipeline/test_pipeline.py +++ b/tests/framework/cli/pipeline/test_pipeline.py @@ -58,10 +58,6 @@ def test_create_pipeline( # pylint: disable=too-many-locals result = CliRunner().invoke(fake_project_cli, cmd, obj=fake_metadata) assert result.exit_code == 0 - assert ( - f"To be able to run the pipeline '{PIPELINE_NAME}', you will need " - f"to add it to 'register_pipelines()'" in result.output - ) # pipeline assert f"Creating the pipeline '{PIPELINE_NAME}': OK" in result.output @@ -92,10 +88,6 @@ def test_create_pipeline_skip_config( result = CliRunner().invoke(fake_project_cli, cmd, obj=fake_metadata) assert result.exit_code == 0 - assert ( - f"To be able to run the pipeline '{PIPELINE_NAME}', you will need " - f"to add it to 'register_pipelines()'" in result.output - ) assert f"Creating the pipeline '{PIPELINE_NAME}': OK" in result.output assert f"Pipeline '{PIPELINE_NAME}' was successfully created." in result.output