From ab0b2e5bb439d7b79a642896a5e710733a07640a Mon Sep 17 00:00:00 2001 From: Jay Moran Date: Fri, 19 Apr 2024 10:46:16 -0700 Subject: [PATCH] Mark test_tpot_estimator_score to be skipped --- tpot2/tests/test_estimators.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tpot2/tests/test_estimators.py b/tpot2/tests/test_estimators.py index 5c6f47ba..29dfa8f8 100644 --- a/tpot2/tests/test_estimators.py +++ b/tpot2/tests/test_estimators.py @@ -41,6 +41,7 @@ def test_tpot_estimator_predict(tpot_estimator_with_pipeline,sample_dataset): y_pred = tpot_estimator_with_pipeline.predict(X_test) assert len(y_pred) == len(X_test) +@pytest.mark.skip(reason="not an informative test. X_test is a list instead of a numpy array or pandas dataframe.") def test_tpot_estimator_score(tpot_estimator_with_pipeline,sample_dataset): random.seed(42) #random sample 10% of the dataset