-
Notifications
You must be signed in to change notification settings - Fork 1.2k
fix: FrameworkProcessor S3 uploads #3493
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
Changes from 18 commits
85d5be2
645c938
864a90a
2a1274c
db69b5f
8d7f82e
c2be61f
59d9b42
54dd242
bb9a044
c8966c7
623d85b
71adb25
2531a1c
92a8eea
1d88738
829d950
83bf77e
5ed6827
3fc3d00
e846f6c
a359090
547c895
976a2d7
89e66df
7732b9e
585b8df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" | ||
Integ test file evaluate.py | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: As these test data are used by pipeline tests only. Let's move it to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Name it as "data/pipeline/test_source_dir" |
||
""" | ||
|
||
print("test evaluate script") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" | ||
Integ test file preprocess.py | ||
""" | ||
|
||
print("test preprocess script") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" | ||
Integ test file query_data.py | ||
""" | ||
|
||
print("test query data script") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" | ||
Integ test file train_test_split.py | ||
""" | ||
|
||
print("test train, test, split script") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: may be good to extract to a helper function according to SRP