forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 5944d09
committed
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.1 parent a078d01 commit 5944d09
1 file changed
+9
-8
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 | + | ||
9 | 10 |
| |
10 | 11 |
| |
12 | + | ||
13 | + | ||
11 | 14 |
| |
12 | 15 |
| |
13 | - | ||
14 | - | ||
15 | - | ||
16 | - | ||
17 | - | ||
18 | - | ||
19 | - | ||
20 | - | ||
21 | 16 |
| |
17 | + | ||
22 | 18 |
| |
23 | 19 |
| |
24 | 20 |
| |
| |||
239 | 235 |
| |
240 | 236 |
| |
241 | 237 |
| |
238 | + | ||
239 | + | ||
240 | + | ||
241 | + | ||
242 | + | ||
242 | 243 |
| |
243 | 244 |
| |
244 | 245 |
| |
|
0 commit comments