Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change pipeline tests location for starters #215

Merged
merged 25 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b3de849
Update kedro-datasets optional requirements naming
lrcouto Feb 28, 2024
0df5492
Merge branch 'main' into normalize-kedro-datasets-naming
lrcouto Apr 3, 2024
95c0c58
Merge branch 'main' of github.com:kedro-org/kedro-starters into norma…
lrcouto Apr 4, 2024
75f7878
Change pipeline tests location for starters
lrcouto Apr 4, 2024
c3c5ca4
Update readmes to match new file structure
lrcouto Apr 5, 2024
f6226c8
Update readmes to match new file structure
lrcouto Apr 5, 2024
032324e
Change pipeline tests location for starters
lrcouto Apr 4, 2024
d7c7c10
Merge branch 'change-starters-tests-file-structure' of github.com:ked…
lrcouto Apr 11, 2024
b41646e
Merge branch 'normalize-kedro-datasets-naming' of github.com:kedro-or…
lrcouto Apr 11, 2024
6aad220
Rename nodes in pyspark starters
lrcouto Apr 11, 2024
684e5b9
Rename nodes in pyspark starters
lrcouto Apr 11, 2024
41220c0
Restore old datasets naming convention for python < 3.9
lrcouto Apr 11, 2024
556960c
Rename shuttles node
lrcouto Apr 11, 2024
c2975e2
Try pin kedro-datasets to 3.0 for python 3.9+
merelcht Apr 12, 2024
256c954
Rolled back to old datasets naming
ElenaKhaustova Apr 12, 2024
5cc4943
test pulling starters from this branch
lrcouto Apr 12, 2024
14b775c
Point back to main kedro branch on test requirements
lrcouto Apr 12, 2024
654d8c8
Updated datasets's names to keep using transcoding
ElenaKhaustova Apr 15, 2024
5020347
Point to test branch to ensure tests passing
ElenaKhaustova Apr 15, 2024
5a4e821
Point back to main kedro branch
ElenaKhaustova Apr 15, 2024
7761c99
Merge branch 'normalize-kedro-datasets-naming' into change-starters-t…
ElenaKhaustova Apr 15, 2024
da92451
Fixed merge bug
ElenaKhaustova Apr 15, 2024
587eeb3
Removed odd blank line
ElenaKhaustova Apr 15, 2024
6741508
Reverted pointing to main branch
ElenaKhaustova Apr 15, 2024
54a5ca7
Merge branch 'main' into change-starters-tests-file-structure
ElenaKhaustova Apr 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated datasets's names to keep using transcoding
Signed-off-by: Elena Khaustova <ymax70rus@gmail.com>
  • Loading branch information
ElenaKhaustova committed Apr 15, 2024
commit 654d8c8c1246733c61a8d247700f0c3e5a6b107d
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ reviews:
header: True
mode: overwrite

shuttles_excel_data@excel:
shuttles_excel:
type: pandas.ExcelDataset
filepath: data/01_raw/shuttles.xlsx

shuttles_csv_data@csv:
shuttles@csv:
type: pandas.CSVDataset
filepath: data/02_intermediate/shuttles.csv

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def create_pipeline(**kwargs) -> Pipeline:
[
node(
func=load_shuttles_to_csv,
inputs="shuttles_excel_data@excel",
outputs="shuttles_csv_data@csv",
inputs="shuttles_excel",
outputs="shuttles@csv",
name="load_shuttles_to_csv_node",
),
node(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ reviews:
header: True
mode: overwrite

shuttles_excel_data@excel:
shuttles_excel:
type: pandas.ExcelDataset
filepath: data/01_raw/shuttles.xlsx

shuttles_csv_data@csv:
shuttles@csv:
type: pandas.CSVDataset
filepath: data/02_intermediate/shuttles.csv

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def create_pipeline(**kwargs) -> Pipeline:
[
node(
func=load_shuttles_to_csv,
inputs="shuttles_excel_data@excel",
outputs="shuttles_csv_data@csv",
inputs="shuttles_excel",
outputs="shuttles@csv",
name="load_shuttles_to_csv_node",
),
node(
Expand Down