2424class TestOriginCloudRegions :
2525 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
2626
27+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
2728 @parametrize
2829 def test_method_update (self , client : Cloudflare ) -> None :
2930 origin_cloud_region = client .cache .origin_cloud_regions .update (
@@ -35,6 +36,7 @@ def test_method_update(self, client: Cloudflare) -> None:
3536 )
3637 assert_matches_type (Optional [OriginCloudRegion ], origin_cloud_region , path = ["response" ])
3738
39+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
3840 @parametrize
3941 def test_raw_response_update (self , client : Cloudflare ) -> None :
4042 response = client .cache .origin_cloud_regions .with_raw_response .update (
@@ -50,6 +52,7 @@ def test_raw_response_update(self, client: Cloudflare) -> None:
5052 origin_cloud_region = response .parse ()
5153 assert_matches_type (Optional [OriginCloudRegion ], origin_cloud_region , path = ["response" ])
5254
55+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
5356 @parametrize
5457 def test_streaming_response_update (self , client : Cloudflare ) -> None :
5558 with client .cache .origin_cloud_regions .with_streaming_response .update (
@@ -67,6 +70,7 @@ def test_streaming_response_update(self, client: Cloudflare) -> None:
6770
6871 assert cast (Any , response .is_closed ) is True
6972
73+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
7074 @parametrize
7175 def test_path_params_update (self , client : Cloudflare ) -> None :
7276 with pytest .raises (ValueError , match = r"Expected a non-empty value for `zone_id` but received ''" ):
@@ -400,6 +404,7 @@ class TestAsyncOriginCloudRegions:
400404 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
401405 )
402406
407+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
403408 @parametrize
404409 async def test_method_update (self , async_client : AsyncCloudflare ) -> None :
405410 origin_cloud_region = await async_client .cache .origin_cloud_regions .update (
@@ -411,6 +416,7 @@ async def test_method_update(self, async_client: AsyncCloudflare) -> None:
411416 )
412417 assert_matches_type (Optional [OriginCloudRegion ], origin_cloud_region , path = ["response" ])
413418
419+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
414420 @parametrize
415421 async def test_raw_response_update (self , async_client : AsyncCloudflare ) -> None :
416422 response = await async_client .cache .origin_cloud_regions .with_raw_response .update (
@@ -426,6 +432,7 @@ async def test_raw_response_update(self, async_client: AsyncCloudflare) -> None:
426432 origin_cloud_region = await response .parse ()
427433 assert_matches_type (Optional [OriginCloudRegion ], origin_cloud_region , path = ["response" ])
428434
435+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
429436 @parametrize
430437 async def test_streaming_response_update (self , async_client : AsyncCloudflare ) -> None :
431438 async with async_client .cache .origin_cloud_regions .with_streaming_response .update (
@@ -443,6 +450,7 @@ async def test_streaming_response_update(self, async_client: AsyncCloudflare) ->
443450
444451 assert cast (Any , response .is_closed ) is True
445452
453+ @pytest .mark .skip (reason = "HTTP 404 error from prism -- route not in spec" )
446454 @parametrize
447455 async def test_path_params_update (self , async_client : AsyncCloudflare ) -> None :
448456 with pytest .raises (ValueError , match = r"Expected a non-empty value for `zone_id` but received ''" ):
0 commit comments