From e560f9963c6b46db0367319098e68b0dcb3eda7d Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 12 Mar 2024 07:30:06 +0100 Subject: [PATCH] Don't run Torch models on macos. --- tests/freqai/test_freqai_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/freqai/test_freqai_interface.py b/tests/freqai/test_freqai_interface.py index 2e42f000e..5e6c1f35c 100644 --- a/tests/freqai/test_freqai_interface.py +++ b/tests/freqai/test_freqai_interface.py @@ -27,7 +27,7 @@ def can_run_model(model: str) -> None: if is_arm() and "Catboost" in model: pytest.skip("CatBoost is not supported on ARM.") - if is_pytorch_model and is_mac() and not is_arm(): + if is_pytorch_model and is_mac(): pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")