Skip to content

Commit

Permalink
[KED-2625] Add Kedro telemetry to requirements (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
merelcht authored Jun 15, 2021
1 parent f2e0b8f commit 0288eb3
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[pandas.CSVDataSet]=={{ cookiecutter.kedro_version }}
kedro-airflow~=0.4
kedro-telemetry~=0.1.0
nbstripout~=0.4
pytest-cov~=2.5
pytest-mock>=1.7.1, <2.0
Expand Down
3 changes: 3 additions & 0 deletions features/steps/run_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def create_project_from_config_file(context, starter_name):
]
)
assert res.returncode == OK_EXIT_CODE
# prevent telemetry from prompting for input during e2e tests
telemetry_file = context.root_project_dir / ".telemetry"
telemetry_file.write_text("consent: false", encoding="utf-8")


@given("I have installed the Kedro project's dependencies")
Expand Down
1 change: 1 addition & 0 deletions mini-kedro/{{ cookiecutter.repo_name }}/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
jupyter~=1.0
kedro[pandas.CSVDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[pandas.CSVDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
nbstripout~=0.4
pytest-cov~=2.5
pytest-mock>=1.7.1, <2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[spark.SparkDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
nbstripout~=0.4
numpy~=1.19.1
pytest-cov~=2.5
pytest-mock>=1.7.1, <2.0
pytest~=6.2
wheel>=0.35, <0.37
wheel>=0.35, <0.37
1 change: 1 addition & 0 deletions pyspark/{{ cookiecutter.repo_name }}/src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[spark.SparkDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
nbstripout~=0.4
pytest-cov~=2.5
pytest-mock>=1.7.1, <2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[pandas.CSVDataSet,pandas.ExcelDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
kedro-viz~=3.1
nbstripout~=0.4
pytest-cov~=2.5
Expand Down

0 comments on commit 0288eb3

Please sign in to comment.