File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ async def test_should_pass_literal_env_values_to_mcp_server_subprocess(
9393
9494 message = await session .send_and_wait (
9595 {
96- "prompt" : "Use the env-echo/get_env tool to read the TEST_SECRET environment variable. Reply with just the value, nothing else."
96+ "prompt" : "Use the env-echo/get_env tool to read the TEST_SECRET "
97+ "environment variable. Reply with just the value, nothing else."
9798 }
9899 )
99100 assert message is not None
Original file line number Diff line number Diff line change 1717
1818
1919def get_cli_path_for_tests () -> str :
20- """Get CLI path for E2E tests. Uses COPILOT_CLI_PATH env var if set, otherwise node_modules CLI."""
20+ """Get CLI path for E2E tests.
21+
22+ Uses COPILOT_CLI_PATH env var if set, otherwise node_modules CLI.
23+ """
2124 env_path = os .environ .get ("COPILOT_CLI_PATH" )
2225 if env_path and Path (env_path ).exists ():
2326 return str (Path (env_path ).resolve ())
You can’t perform that action at this time.
0 commit comments