@@ -374,6 +374,9 @@ def test_path_params_delete(self, client: Cloudflare) -> None:
374
374
account_id = "023e105f4ecef8ad9ca31a8372d0c353" ,
375
375
)
376
376
377
+ @pytest .mark .skip (
378
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
379
+ )
377
380
@parametrize
378
381
def test_method_get (self , client : Cloudflare ) -> None :
379
382
policy = client .alerting .policies .get (
@@ -382,6 +385,9 @@ def test_method_get(self, client: Cloudflare) -> None:
382
385
)
383
386
assert_matches_type (Optional [Policy ], policy , path = ["response" ])
384
387
388
+ @pytest .mark .skip (
389
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
390
+ )
385
391
@parametrize
386
392
def test_raw_response_get (self , client : Cloudflare ) -> None :
387
393
response = client .alerting .policies .with_raw_response .get (
@@ -394,6 +400,9 @@ def test_raw_response_get(self, client: Cloudflare) -> None:
394
400
policy = response .parse ()
395
401
assert_matches_type (Optional [Policy ], policy , path = ["response" ])
396
402
403
+ @pytest .mark .skip (
404
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
405
+ )
397
406
@parametrize
398
407
def test_streaming_response_get (self , client : Cloudflare ) -> None :
399
408
with client .alerting .policies .with_streaming_response .get (
@@ -408,6 +417,9 @@ def test_streaming_response_get(self, client: Cloudflare) -> None:
408
417
409
418
assert cast (Any , response .is_closed ) is True
410
419
420
+ @pytest .mark .skip (
421
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
422
+ )
411
423
@parametrize
412
424
def test_path_params_get (self , client : Cloudflare ) -> None :
413
425
with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
@@ -777,6 +789,9 @@ async def test_path_params_delete(self, async_client: AsyncCloudflare) -> None:
777
789
account_id = "023e105f4ecef8ad9ca31a8372d0c353" ,
778
790
)
779
791
792
+ @pytest .mark .skip (
793
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
794
+ )
780
795
@parametrize
781
796
async def test_method_get (self , async_client : AsyncCloudflare ) -> None :
782
797
policy = await async_client .alerting .policies .get (
@@ -785,6 +800,9 @@ async def test_method_get(self, async_client: AsyncCloudflare) -> None:
785
800
)
786
801
assert_matches_type (Optional [Policy ], policy , path = ["response" ])
787
802
803
+ @pytest .mark .skip (
804
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
805
+ )
788
806
@parametrize
789
807
async def test_raw_response_get (self , async_client : AsyncCloudflare ) -> None :
790
808
response = await async_client .alerting .policies .with_raw_response .get (
@@ -797,6 +815,9 @@ async def test_raw_response_get(self, async_client: AsyncCloudflare) -> None:
797
815
policy = await response .parse ()
798
816
assert_matches_type (Optional [Policy ], policy , path = ["response" ])
799
817
818
+ @pytest .mark .skip (
819
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
820
+ )
800
821
@parametrize
801
822
async def test_streaming_response_get (self , async_client : AsyncCloudflare ) -> None :
802
823
async with async_client .alerting .policies .with_streaming_response .get (
@@ -811,6 +832,9 @@ async def test_streaming_response_get(self, async_client: AsyncCloudflare) -> No
811
832
812
833
assert cast (Any , response .is_closed ) is True
813
834
835
+ @pytest .mark .skip (
836
+ reason = "prism errors - https://github.com/cloudflare/cloudflare-python/actions/runs/9327225061/job/25676826349?pr=482#step:5:4274"
837
+ )
814
838
@parametrize
815
839
async def test_path_params_get (self , async_client : AsyncCloudflare ) -> None :
816
840
with pytest .raises (ValueError , match = r"Expected a non-empty value for `account_id` but received ''" ):
0 commit comments