Skip to content

Commit

Permalink
fix run
Browse files Browse the repository at this point in the history
  • Loading branch information
SajidAlamQB committed Jan 18, 2024
1 parent c7479b2 commit a1ec5f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion features/steps/run_steps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import subprocess
from pathlib import Path

import yaml
from behave import given, then, when
Expand Down Expand Up @@ -51,7 +52,7 @@ def create_project_from_config_file(context, starter_name):
@when("I run a non-interactive kedro new without starter")
def create_project_without_starter(context):
"""Behave step to run kedro new given the config I previously created."""
res = run(
res = subprocess.run(
[context.kedro, "new", "-c", str(context.config_file)],
env=context.env,
cwd=context.temp_dir,
Expand Down

0 comments on commit a1ec5f1

Please sign in to comment.