-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fsspec: loosen the prefix check to cover both None and False #6246
Conversation
@mnrozhkov @jnissin would you mind installing from this branch and testing whether it works now or not?
|
I can test, however my local DVC setup is installed using brew. So I am wondering whether there is a way to test the patch through brew? I guess I can also just create a virtualenv and try the pip version 🤔 |
@isidentical Not working for me:
|
9c951df
to
04a7139
Compare
|
||
|
||
@pytest.mark.parametrize("remote", full_clouds, indirect=True) | ||
def test_pull_no_00_prefix(tmp_dir, dvc, remote, monkeypatch): |
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.
What this does is, it is triggering a prefix based search while that prefix doesn't exist (unlike test_pull_00_prefix
, where it is triggering a prefix based search while the prefix exists).
I can confirm that now pushing to GCS is working for me 👍 . |
@isidentical Is this ready for review? |
yes, it is. |
@isidentical Great catch! 💪 |
Related #6244