File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ def test_copy_signature(self) -> None:
182182 copy_param = copy_signature .parameters .get (name )
183183 assert copy_param is not None , f"copy() signature is missing the { name } param"
184184
185+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
185186 def test_copy_build_request (self ) -> None :
186187 options = FinalRequestOptions (method = "get" , url = "/foo" )
187188
@@ -965,6 +966,7 @@ def test_copy_signature(self) -> None:
965966 copy_param = copy_signature .parameters .get (name )
966967 assert copy_param is not None , f"copy() signature is missing the { name } param"
967968
969+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
968970 def test_copy_build_request (self ) -> None :
969971 options = FinalRequestOptions (method = "get" , url = "/foo" )
970972
You can’t perform that action at this time.
0 commit comments