You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mark test_conditional_includes_from_git_dir xfail on Windows
As noted, the second of the config._included_paths() assertions
fails, which is in the "Ensure that config is included if path is
matching git_dir" sub-case.
It is returning 0 on Windows. THe GitConfigParser._has_includes
function returns the expression:
self._merge_includes and len(self._included_paths())
Since _merge_includes is a bool, it appears the first branch of the
"and" is True, but then _included_paths returns an empty list.
0 commit comments