File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ def api_coverage_df():
2626 return build_api_coverage_table ("my_bf_ver" , "my_release_ver" )
2727
2828
29+ @pytest .mark .skipif (
30+ sys .version_info >= (3 , 13 ),
31+ reason = "Issues with installing sklearn for this test in python 3.13" ,
32+ )
2933def test_api_coverage_produces_expected_schema (api_coverage_df ):
3034 if sys .version .split ("." )[:2 ] == ["3" , "9" ]:
3135 pytest .skip (
@@ -55,6 +59,10 @@ def test_api_coverage_produces_expected_schema(api_coverage_df):
5559 )
5660
5761
62+ @pytest .mark .skipif (
63+ sys .version_info >= (3 , 13 ),
64+ reason = "Issues with installing sklearn for this test in python 3.13" ,
65+ )
5866def test_api_coverage_produces_missing_parameters (api_coverage_df ):
5967 """Make sure at least some functions have reported missing parameters."""
6068 assert (api_coverage_df ["missing_parameters" ].str .len () > 0 ).any ()
You can’t perform that action at this time.
0 commit comments