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
@@ -1001,6 +1002,7 @@ def test_copy_signature(self) -> None:
1001
1002
copy_param = copy_signature .parameters .get (name )
1002
1003
assert copy_param is not None , f"copy() signature is missing the { name } param"
1003
1004
1005
+ @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "fails because of a memory leak that started from 3.12" )
1004
1006
def test_copy_build_request (self ) -> None :
1005
1007
options = FinalRequestOptions (method = "get" , url = "/foo" )
1006
1008
You can’t perform that action at this time.
0 commit comments