@@ -930,34 +930,6 @@ async def test_shell_auto_generated_name(self, devbox: AsyncDevbox) -> None:
930930 output = await result .stdout ()
931931 assert "test" in output
932932
933- @pytest .mark .timeout (TWO_MINUTE_TIMEOUT )
934- async def test_shell_exec_with_additional_params (self , devbox : AsyncDevbox ) -> None :
935- """Test that additional params are passed through correctly."""
936- shell = devbox .shell ("test-shell-params" )
937-
938- # Test that additional params (like working_dir) are passed through correctly
939- # Note: shell_name should override any shell_name in params
940- result = await shell .exec ("pwd" , working_dir = "/tmp" )
941-
942- assert result .exit_code == 0
943- output = (await result .stdout ()).strip ()
944- # Should be in /tmp due to working_dir param
945- assert output == "/tmp"
946-
947- @pytest .mark .timeout (TWO_MINUTE_TIMEOUT )
948- async def test_shell_exec_async_with_additional_params (self , devbox : AsyncDevbox ) -> None :
949- """Test that additional params are passed through correctly in exec_async."""
950- shell = devbox .shell ("test-shell-async-params" )
951-
952- # Test that additional params are passed through correctly
953- execution = await shell .exec_async ("pwd" , working_dir = "/home" )
954-
955- result = await execution .result ()
956- assert result .exit_code == 0
957- output = (await result .stdout ()).strip ()
958- # Should be in /home due to working_dir param
959- assert output == "/home"
960-
961933 @pytest .mark .timeout (TWO_MINUTE_TIMEOUT )
962934 async def test_shell_exec_with_stderr_streaming (self , devbox : AsyncDevbox ) -> None :
963935 """Test shell exec with stderr streaming callback."""
0 commit comments