1717class TestBulk :
1818 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
1919
20+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
2021 @parametrize
2122 def test_method_delete (self , client : Knock ) -> None :
2223 bulk = client .tenants .bulk .delete (
2324 tenant_ids = ["string" ],
2425 )
2526 assert_matches_type (BulkOperation , bulk , path = ["response" ])
2627
28+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
2729 @parametrize
2830 def test_raw_response_delete (self , client : Knock ) -> None :
2931 response = client .tenants .bulk .with_raw_response .delete (
@@ -35,6 +37,7 @@ def test_raw_response_delete(self, client: Knock) -> None:
3537 bulk = response .parse ()
3638 assert_matches_type (BulkOperation , bulk , path = ["response" ])
3739
40+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
3841 @parametrize
3942 def test_streaming_response_delete (self , client : Knock ) -> None :
4043 with client .tenants .bulk .with_streaming_response .delete (
@@ -85,13 +88,15 @@ class TestAsyncBulk:
8588 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
8689 )
8790
91+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
8892 @parametrize
8993 async def test_method_delete (self , async_client : AsyncKnock ) -> None :
9094 bulk = await async_client .tenants .bulk .delete (
9195 tenant_ids = ["string" ],
9296 )
9397 assert_matches_type (BulkOperation , bulk , path = ["response" ])
9498
99+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
95100 @parametrize
96101 async def test_raw_response_delete (self , async_client : AsyncKnock ) -> None :
97102 response = await async_client .tenants .bulk .with_raw_response .delete (
@@ -103,6 +108,7 @@ async def test_raw_response_delete(self, async_client: AsyncKnock) -> None:
103108 bulk = await response .parse ()
104109 assert_matches_type (BulkOperation , bulk , path = ["response" ])
105110
111+ @pytest .mark .skip (reason = "Steady does not support bracket-style array query params" )
106112 @parametrize
107113 async def test_streaming_response_delete (self , async_client : AsyncKnock ) -> None :
108114 async with async_client .tenants .bulk .with_streaming_response .delete (
0 commit comments