@@ -585,6 +585,7 @@ def test_path_params_get_code_actions_for_diagnostic(self, client: Runloop) -> N
585585 )
586586
587587 @parametrize
588+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
588589 def test_method_get_code_segment_info (self , client : Runloop ) -> None :
589590 lsp = client .devboxes .lsp .get_code_segment_info (
590591 id = "id" ,
@@ -594,6 +595,7 @@ def test_method_get_code_segment_info(self, client: Runloop) -> None:
594595 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
595596
596597 @parametrize
598+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
597599 def test_method_get_code_segment_info_with_all_params (self , client : Runloop ) -> None :
598600 lsp = client .devboxes .lsp .get_code_segment_info (
599601 id = "id" ,
@@ -604,6 +606,7 @@ def test_method_get_code_segment_info_with_all_params(self, client: Runloop) ->
604606 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
605607
606608 @parametrize
609+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
607610 def test_raw_response_get_code_segment_info (self , client : Runloop ) -> None :
608611 response = client .devboxes .lsp .with_raw_response .get_code_segment_info (
609612 id = "id" ,
@@ -617,6 +620,7 @@ def test_raw_response_get_code_segment_info(self, client: Runloop) -> None:
617620 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
618621
619622 @parametrize
623+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
620624 def test_streaming_response_get_code_segment_info (self , client : Runloop ) -> None :
621625 with client .devboxes .lsp .with_streaming_response .get_code_segment_info (
622626 id = "id" ,
@@ -1380,6 +1384,7 @@ async def test_path_params_get_code_actions_for_diagnostic(self, async_client: A
13801384 )
13811385
13821386 @parametrize
1387+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
13831388 async def test_method_get_code_segment_info (self , async_client : AsyncRunloop ) -> None :
13841389 lsp = await async_client .devboxes .lsp .get_code_segment_info (
13851390 id = "id" ,
@@ -1389,6 +1394,7 @@ async def test_method_get_code_segment_info(self, async_client: AsyncRunloop) ->
13891394 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
13901395
13911396 @parametrize
1397+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
13921398 async def test_method_get_code_segment_info_with_all_params (self , async_client : AsyncRunloop ) -> None :
13931399 lsp = await async_client .devboxes .lsp .get_code_segment_info (
13941400 id = "id" ,
@@ -1399,6 +1405,7 @@ async def test_method_get_code_segment_info_with_all_params(self, async_client:
13991405 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
14001406
14011407 @parametrize
1408+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
14021409 async def test_raw_response_get_code_segment_info (self , async_client : AsyncRunloop ) -> None :
14031410 response = await async_client .devboxes .lsp .with_raw_response .get_code_segment_info (
14041411 id = "id" ,
@@ -1412,6 +1419,7 @@ async def test_raw_response_get_code_segment_info(self, async_client: AsyncRunlo
14121419 assert_matches_type (CodeSegmentInfoResponse , lsp , path = ["response" ])
14131420
14141421 @parametrize
1422+ @pytest .mark .skip_if_strict (reason = "prism mock server generates invalid nested DocumentSymbol structures" )
14151423 async def test_streaming_response_get_code_segment_info (self , async_client : AsyncRunloop ) -> None :
14161424 async with async_client .devboxes .lsp .with_streaming_response .get_code_segment_info (
14171425 id = "id" ,
0 commit comments