-
Notifications
You must be signed in to change notification settings - Fork 110
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
Acknowledge git-config comment chars #6944
Conversation
Previously we ignored them in values as mandatory reasons for quoting. This change expands the `quote_config()` helper to perform this additional test. Fixes datalad#6943
Crawler test failure is unrelated and occurs elsewhere too. |
Codecov Report
@@ Coverage Diff @@
## maint #6944 +/- ##
==========================================
+ Coverage 89.96% 90.95% +0.99%
==========================================
Files 354 354
Lines 46257 46261 +4
==========================================
+ Hits 41615 42079 +464
+ Misses 4642 4182 -460
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
Please do not hardcode unicode in the test. IMHO no need for windows conditioning right there.
Thanks to @yarikoptic for pointing this out.
Previously we ignored them in values as mandatory reasons for quoting.
This change expands the
quote_config()
helper to perform thisadditional test.
Fixes #6943