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 @@ -194,6 +194,7 @@ def test_copy_signature(self) -> None:
194194 copy_param = copy_signature .parameters .get (name )
195195 assert copy_param is not None , f"copy() signature is missing the { name } param"
196196
197+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
197198 def test_copy_build_request (self ) -> None :
198199 options = FinalRequestOptions (method = "get" , url = "/foo" )
199200
@@ -1039,6 +1040,7 @@ def test_copy_signature(self) -> None:
10391040 copy_param = copy_signature .parameters .get (name )
10401041 assert copy_param is not None , f"copy() signature is missing the { name } param"
10411042
1043+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
10421044 def test_copy_build_request (self ) -> None :
10431045 options = FinalRequestOptions (method = "get" , url = "/foo" )
10441046
You can’t perform that action at this time.
0 commit comments