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 @@ -191,6 +191,7 @@ def test_copy_signature(self) -> None:
191
191
copy_param = copy_signature .parameters .get (name )
192
192
assert copy_param is not None , f"copy() signature is missing the { name } param"
193
193
194
+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
194
195
def test_copy_build_request (self ) -> None :
195
196
options = FinalRequestOptions (method = "get" , url = "/foo" )
196
197
@@ -1072,6 +1073,7 @@ def test_copy_signature(self) -> None:
1072
1073
copy_param = copy_signature .parameters .get (name )
1073
1074
assert copy_param is not None , f"copy() signature is missing the { name } param"
1074
1075
1076
+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
1075
1077
def test_copy_build_request (self ) -> None :
1076
1078
options = FinalRequestOptions (method = "get" , url = "/foo" )
1077
1079
You can’t perform that action at this time.
0 commit comments