Skip to content

Commit

Permalink
docs(datasets): add renamed Polars datasets
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Roels <matthias.roels21@gmail.com>
  • Loading branch information
MatthiasRoels committed Oct 17, 2023
1 parent 3d9eb3a commit d2409df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions kedro-datasets/docs/source/kedro_datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ kedro_datasets
kedro_datasets.polars.CSVDataset
kedro_datasets.polars.GenericDataSet
kedro_datasets.polars.GenericDataset
kedro_datasets.polars.EagerPolarsDataset
kedro_datasets.polars.LazyPolarsDataset
kedro_datasets.redis.PickleDataSet
kedro_datasets.redis.PickleDataset
kedro_datasets.snowflake.SnowparkTableDataSet
Expand Down
2 changes: 1 addition & 1 deletion kedro-datasets/kedro_datasets/polars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# https://github.com/pylint-dev/pylint/issues/4300#issuecomment-1043601901
CSVDataSet: type[CSVDataset]
CSVDataset: Any
GenericDataSet: type[GenericDataset]
GenericDataSet: type[EagerPolarsDataset]
GenericDataset: type[EagerPolarsDataset]
EagerPolarsDataset: Any
LazyPolarsDataset: Any
Expand Down
3 changes: 2 additions & 1 deletion kedro-datasets/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ version = {attr = "kedro_datasets.__version__"}
[tool.coverage.report]
fail_under = 100
show_missing = true
omit = ["tests/*", "kedro_datasets/holoviews/*", "kedro_datasets/snowflake/*", "kedro_datasets/tensorflow/*"]
# temporarily ignore kedro_datasets/__init__.py in coverage report
omit = ["tests/*", "kedro_datasets/__init__.py", "kedro_datasets/holoviews/*", "kedro_datasets/snowflake/*", "kedro_datasets/tensorflow/*"]
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]

[tool.pytest.ini_options]
Expand Down

0 comments on commit d2409df

Please sign in to comment.