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:
194
194
copy_param = copy_signature .parameters .get (name )
195
195
assert copy_param is not None , f"copy() signature is missing the { name } param"
196
196
197
+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
197
198
def test_copy_build_request (self ) -> None :
198
199
options = FinalRequestOptions (method = "get" , url = "/foo" )
199
200
@@ -1028,6 +1029,7 @@ def test_copy_signature(self) -> None:
1028
1029
copy_param = copy_signature .parameters .get (name )
1029
1030
assert copy_param is not None , f"copy() signature is missing the { name } param"
1030
1031
1032
+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
1031
1033
def test_copy_build_request (self ) -> None :
1032
1034
options = FinalRequestOptions (method = "get" , url = "/foo" )
1033
1035
You can’t perform that action at this time.
0 commit comments