Skip to content

Commit

Permalink
Mark test_tpot_estimator_score to be skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-m-dev committed Apr 19, 2024
1 parent ef2a9a1 commit ab0b2e5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tpot2/tests/test_estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab0b2e5

Please sign in to comment.