Skip to content

Commit 843a528

Browse files
committed
Revert: Re-add pytest.mark.skipif for Python 3.13 in test_publish_api_coverage.py
1 parent 371c486 commit 843a528

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/test_publish_api_coverage.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
)
2933
def 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+
)
5866
def 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()

0 commit comments

Comments
 (0)