From 89829949ce2c835ff174efae2ac7ccd3e10de682 Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Wed, 22 May 2024 14:12:34 +0530 Subject: [PATCH] MINOR: Fix flaky pytests (#16379) --- ingestion/tests/integration/mlflow/test_mlflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/tests/integration/mlflow/test_mlflow.py b/ingestion/tests/integration/mlflow/test_mlflow.py index 0065460831c..e404ea4e8a1 100644 --- a/ingestion/tests/integration/mlflow/test_mlflow.py +++ b/ingestion/tests/integration/mlflow/test_mlflow.py @@ -80,7 +80,7 @@ def create_data(mlflow_environment): np.random.seed(40) # Read the wine-quality csv file from the URL - csv_url = "http://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-red.csv" + csv_url = "https://raw.githubusercontent.com/open-metadata/openmetadata-demo/main/resources/winequality-red.csv" data = pd.read_csv(csv_url, sep=";") # Split the data into training and test sets. (0.75, 0.25) split.