@@ -170,13 +170,15 @@ def test_path_params_redeploy(self, client: Runloop) -> None:
170170 "" ,
171171 )
172172
173+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
173174 @parametrize
174175 def test_method_tail (self , client : Runloop ) -> None :
175176 deployment = client .deployments .tail (
176177 "deployment_id" ,
177178 )
178179 assert_matches_type (DeploymentTailResponse , deployment , path = ["response" ])
179180
181+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
180182 @parametrize
181183 def test_raw_response_tail (self , client : Runloop ) -> None :
182184 response = client .deployments .with_raw_response .tail (
@@ -188,6 +190,7 @@ def test_raw_response_tail(self, client: Runloop) -> None:
188190 deployment = response .parse ()
189191 assert_matches_type (DeploymentTailResponse , deployment , path = ["response" ])
190192
193+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
191194 @parametrize
192195 def test_streaming_response_tail (self , client : Runloop ) -> None :
193196 with client .deployments .with_streaming_response .tail (
@@ -201,6 +204,7 @@ def test_streaming_response_tail(self, client: Runloop) -> None:
201204
202205 assert cast (Any , response .is_closed ) is True
203206
207+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
204208 @parametrize
205209 def test_path_params_tail (self , client : Runloop ) -> None :
206210 with pytest .raises (ValueError , match = r"Expected a non-empty value for `deployment_id` but received ''" ):
@@ -359,13 +363,15 @@ async def test_path_params_redeploy(self, async_client: AsyncRunloop) -> None:
359363 "" ,
360364 )
361365
366+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
362367 @parametrize
363368 async def test_method_tail (self , async_client : AsyncRunloop ) -> None :
364369 deployment = await async_client .deployments .tail (
365370 "deployment_id" ,
366371 )
367372 assert_matches_type (DeploymentTailResponse , deployment , path = ["response" ])
368373
374+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
369375 @parametrize
370376 async def test_raw_response_tail (self , async_client : AsyncRunloop ) -> None :
371377 response = await async_client .deployments .with_raw_response .tail (
@@ -377,6 +383,7 @@ async def test_raw_response_tail(self, async_client: AsyncRunloop) -> None:
377383 deployment = await response .parse ()
378384 assert_matches_type (DeploymentTailResponse , deployment , path = ["response" ])
379385
386+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
380387 @parametrize
381388 async def test_streaming_response_tail (self , async_client : AsyncRunloop ) -> None :
382389 async with async_client .deployments .with_streaming_response .tail (
@@ -390,6 +397,7 @@ async def test_streaming_response_tail(self, async_client: AsyncRunloop) -> None
390397
391398 assert cast (Any , response .is_closed ) is True
392399
400+ @pytest .mark .skip (reason = "cannot test text/event-stream" )
393401 @parametrize
394402 async def test_path_params_tail (self , async_client : AsyncRunloop ) -> None :
395403 with pytest .raises (ValueError , match = r"Expected a non-empty value for `deployment_id` but received ''" ):
0 commit comments