17
17
class TestUniversal :
18
18
parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
19
19
20
- @pytest .mark .skip ()
20
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
21
21
@parametrize
22
22
def test_method_create (self , client : Isaacus ) -> None :
23
23
universal = client .classifications .universal .create (
@@ -27,7 +27,7 @@ def test_method_create(self, client: Isaacus) -> None:
27
27
)
28
28
assert_matches_type (UniversalClassification , universal , path = ["response" ])
29
29
30
- @pytest .mark .skip ()
30
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
31
31
@parametrize
32
32
def test_method_create_with_all_params (self , client : Isaacus ) -> None :
33
33
universal = client .classifications .universal .create (
@@ -44,7 +44,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
44
44
)
45
45
assert_matches_type (UniversalClassification , universal , path = ["response" ])
46
46
47
- @pytest .mark .skip ()
47
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
48
48
@parametrize
49
49
def test_raw_response_create (self , client : Isaacus ) -> None :
50
50
response = client .classifications .universal .with_raw_response .create (
@@ -58,7 +58,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
58
58
universal = response .parse ()
59
59
assert_matches_type (UniversalClassification , universal , path = ["response" ])
60
60
61
- @pytest .mark .skip ()
61
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
62
62
@parametrize
63
63
def test_streaming_response_create (self , client : Isaacus ) -> None :
64
64
with client .classifications .universal .with_streaming_response .create (
@@ -80,7 +80,7 @@ class TestAsyncUniversal:
80
80
"async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
81
81
)
82
82
83
- @pytest .mark .skip ()
83
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
84
84
@parametrize
85
85
async def test_method_create (self , async_client : AsyncIsaacus ) -> None :
86
86
universal = await async_client .classifications .universal .create (
@@ -90,7 +90,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
90
90
)
91
91
assert_matches_type (UniversalClassification , universal , path = ["response" ])
92
92
93
- @pytest .mark .skip ()
93
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
94
94
@parametrize
95
95
async def test_method_create_with_all_params (self , async_client : AsyncIsaacus ) -> None :
96
96
universal = await async_client .classifications .universal .create (
@@ -107,7 +107,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
107
107
)
108
108
assert_matches_type (UniversalClassification , universal , path = ["response" ])
109
109
110
- @pytest .mark .skip ()
110
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
111
111
@parametrize
112
112
async def test_raw_response_create (self , async_client : AsyncIsaacus ) -> None :
113
113
response = await async_client .classifications .universal .with_raw_response .create (
@@ -121,7 +121,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
121
121
universal = await response .parse ()
122
122
assert_matches_type (UniversalClassification , universal , path = ["response" ])
123
123
124
- @pytest .mark .skip ()
124
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
125
125
@parametrize
126
126
async def test_streaming_response_create (self , async_client : AsyncIsaacus ) -> None :
127
127
async with async_client .classifications .universal .with_streaming_response .create (
0 commit comments