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