-
Notifications
You must be signed in to change notification settings - Fork 14
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
tests: fs: test all backends #85
Conversation
@@ -363,6 +363,8 @@ def add_commit( | |||
validate_git_remote = partialmethod(_backend_func, "validate_git_remote") | |||
check_ref_format = partialmethod(_backend_func, "check_ref_format") | |||
|
|||
get_tree_obj = partialmethod(_backend_func, "get_tree_obj") |
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.
This is only used in tests now, but in the future we should make get_fs
use it and not default to GitFileSystem
's default behaviour that uses pygit2.
@@ -17,35 +17,9 @@ | |||
) | |||
from scmrepo.git import Git | |||
|
|||
# pylint: disable=redefined-outer-name,unused-argument,protected-access |
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.
Need to clean this up at some point
Note #86 |
Guys, I'll merge in the interest of time, but would appreciate if you still take a look. Thank you 🙏 |
No description provided.