Skip to content

Commit 75827ee

Browse files
committed
chore: format
Signed-off-by: Edward Z. Yang <[email protected]> ghstack-source-id: e0df0f7 Pull-Request-resolved: #274
1 parent 3aaa4a8 commit 75827ee

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

e2e/test_run_command.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,16 @@ def test_run_command_with_args(project_dir):
6060
f.write("test content")
6161

6262
result = subprocess.run(
63-
[sys.executable, "-m", "codemcp", "run", "list", test_file, "--path", project_dir],
63+
[
64+
sys.executable,
65+
"-m",
66+
"codemcp",
67+
"run",
68+
"list",
69+
test_file,
70+
"--path",
71+
project_dir,
72+
],
6473
capture_output=True,
6574
text=True,
6675
check=True,
@@ -72,7 +81,15 @@ def test_run_command_error_exit_code(project_dir):
7281
"""Test that error exit codes from the command are propagated."""
7382
# This should return a non-zero exit code
7483
process = subprocess.run(
75-
[sys.executable, "-m", "codemcp", "run", "exit_with_error", "--path", project_dir],
84+
[
85+
sys.executable,
86+
"-m",
87+
"codemcp",
88+
"run",
89+
"exit_with_error",
90+
"--path",
91+
project_dir,
92+
],
7693
capture_output=True,
7794
text=True,
7895
check=False,

0 commit comments

Comments
 (0)