chore: skip catboost tests on 3.14 for now
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
import logging
|
import logging
|
||||||
import shutil
|
import shutil
|
||||||
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
@@ -34,6 +35,9 @@ def can_run_model(model: str) -> None:
|
|||||||
if is_arm() and "Catboost" in model:
|
if is_arm() and "Catboost" in model:
|
||||||
pytest.skip("CatBoost is not supported on ARM.")
|
pytest.skip("CatBoost is not supported on ARM.")
|
||||||
|
|
||||||
|
if "Catboost" in model and sys.version_info >= (3, 14):
|
||||||
|
pytest.skip("CatBoost is not supported on Python 3.14+.")
|
||||||
|
|
||||||
if is_pytorch_model and is_mac():
|
if is_pytorch_model and is_mac():
|
||||||
pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")
|
pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user