-
Notifications
You must be signed in to change notification settings - Fork 1.3k
import: don't forget to set cache.dir #9415
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
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #9415 +/- ##
=======================================
Coverage 91.58% 91.59%
=======================================
Files 487 487
Lines 37775 37779 +4
Branches 5436 5436
=======================================
+ Hits 34598 34602 +4
Misses 2620 2620
Partials 557 557
☔ View full report in Codecov by Sentry. |
|
Thanks a lot for fixing it so quick. My 2cs - we should have a test for this since it was an unpleasant regression after refactoring. Interfaces are not obvious internally (via kwargs and layers of abstractions). |
|
@shcheklein I disagree, this should work by design. This is the only place for DVCFileSystem. A test would be complex and highly specific, that is a bad kind of test.
I agree that dvcfs could have the args cleaned up to make it more obvious. But |
|
I didn't say anything about how that test should look like.
Any combination like this already solves 80% of the intention:
In this specific situation, I think it's wort having a functional/integration test still, or there should be a benchmark that detects this. Bottom line- we should not be testing this on users.
It might be better now. I was merely saying that the way it's written now looks fragile enough to break it next time. |
|
@shcheklein Created #9417 |
Fixes #9385