Skip to content

Commit ad7816d

Browse files
committed
chore: skip catboost tests on 3.14 for now
1 parent 73127c8 commit ad7816d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/freqai/test_freqai_interface.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22
import shutil
3+
import sys
34
from pathlib import Path
45
from unittest.mock import MagicMock
56

@@ -34,6 +35,9 @@ def can_run_model(model: str) -> None:
3435
if is_arm() and "Catboost" in model:
3536
pytest.skip("CatBoost is not supported on ARM.")
3637

38+
if "Catboost" in model and sys.version_info >= (3, 14):
39+
pytest.skip("CatBoost is not supported on Python 3.14+.")
40+
3741
if is_pytorch_model and is_mac():
3842
pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")
3943

0 commit comments

Comments
 (0)