File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ def test_copy_signature(self) -> None:
204204 copy_param = copy_signature .parameters .get (name )
205205 assert copy_param is not None , f"copy() signature is missing the { name } param"
206206
207+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
207208 def test_copy_build_request (self ) -> None :
208209 options = FinalRequestOptions (method = "get" , url = "/foo" )
209210
@@ -1185,6 +1186,7 @@ def test_copy_signature(self) -> None:
11851186 copy_param = copy_signature .parameters .get (name )
11861187 assert copy_param is not None , f"copy() signature is missing the { name } param"
11871188
1189+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
11881190 def test_copy_build_request (self ) -> None :
11891191 options = FinalRequestOptions (method = "get" , url = "/foo" )
11901192
You can’t perform that action at this time.
0 commit comments