-
Notifications
You must be signed in to change notification settings - Fork 816
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
expand fsspec downstream connectors #1777
Conversation
53c27aa
to
5e5c63c
Compare
9be95d3
to
c4b6a60
Compare
1f8c1b6
to
a888fdc
Compare
…1938) This pull request includes updated ingest test fixtures. Please review and merge if appropriate. Co-authored-by: rbiseck3 <[email protected]>
ad5144f
to
463f4c3
Compare
@@ -132,6 +132,13 @@ def __post_init__(self): | |||
self.file_path = "" | |||
return | |||
|
|||
# dropbox paths can start with slash |
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.
oh fun. good catch
|
||
# Simply check the number of files uploaded | ||
expected_num_files=1 | ||
num_files_in_gcs=$(gcloud storage ls "$DESTINATION_GCS"/example-docs/ | wc -l ) |
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.
good enough for now, but can you add a low priority ticket to remove the need for dependencies like gcloud...etc to test these? would be nice if a user didn't need to install all of these just to run the tests. could work by just doing an ls
on the output test folder.
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.
Created one here: drop dependency on cloud CLIs in CI
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.
Will also have to investigate how to clean up the created folders without the CLIs.
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.
Perfect, thanks!
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.
looks good. a couple quick questions above otherwise gtg
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.
Lgtm!
Description
Replacing PR 1383