Skip to content

Commit

Permalink
[System tests] Fix churn demo data url (#562)
Browse files Browse the repository at this point in the history
(cherry picked from commit f3d5e0a)
  • Loading branch information
Hedingber committed Dec 9, 2020
1 parent 03aa8d1 commit c247484
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/system/demos/churn/test_churn.py
Expand Up @@ -16,7 +16,10 @@ def create_demo_project(self) -> mlrun.projects.MlrunProject:
self.project_name, str(self.assets_path), init_git=True
)

data_url = "https://raw.githubusercontent.com/mlrun/demos/master/churn/WA_Fn-UseC_-Telco-Customer-Churn.csv"
data_url = (
"https://raw.githubusercontent.com/mlrun/demos/master/customer-churn-prediction/WA_Fn-UseC_-Telco-"
"Customer-Churn.csv"
)
demo_project.log_artifact("raw-data", target_path=data_url)

self._logger.debug("Creating clean-data function")
Expand Down

0 comments on commit c247484

Please sign in to comment.