From 2f7ba25efb5c3cca90c97e91ae992972bcd77c69 Mon Sep 17 00:00:00 2001 From: Ameer Haj Ali Date: Thu, 14 Jan 2021 18:36:52 +0200 Subject: [PATCH] [joblib] joblib strikes again but this time on windows (#13212) --- python/ray/tests/test_joblib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/ray/tests/test_joblib.py b/python/ray/tests/test_joblib.py index eb5cf09dd..5de0a4889 100644 --- a/python/ray/tests/test_joblib.py +++ b/python/ray/tests/test_joblib.py @@ -2,6 +2,7 @@ import joblib import sys import time import os +import pytest import pickle import numpy as np @@ -77,6 +78,7 @@ the accuracy), which results in longer test time. """ +@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows.") def test_sklearn_benchmarks(ray_start_cluster_2_nodes): ESTIMATORS = { "CART": DecisionTreeClassifier(),