MINOR: Fix flaky pytests (#16379)

This commit is contained in:
Mayur Singal 2024-05-22 14:12:34 +05:30 committed by GitHub
parent 4c46fba202
commit 89829949ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.