There was an error while loading. Please reload this page.
1 parent fc02230 commit 203da23Copy full SHA for 203da23
2 files changed
test/test_config.py
@@ -100,6 +100,7 @@ def test_includes_order(self):
100
# values must be considered as soon as they get them
101
assert r_config.get_value("diff", "tool") == "meld"
102
try:
103
+ # FIXME: Split this assertion out somehow and mark it xfail (or fix it).
104
assert r_config.get_value("sec", "var1") == "value1_main"
105
except AssertionError as e:
106
raise SkipTest("Known failure -- included values are not in effect right away") from e
test/test_util.py
@@ -85,6 +85,7 @@ def setup(self):
85
"array": [42],
86
}
87
88
+ # FIXME: Mark only the /proc-prefixing cases xfail, somehow (or fix them).
89
@pytest.mark.xfail(
90
reason="Many return paths prefixed /proc/cygdrive instead.",
91
raises=AssertionError,
@@ -103,7 +104,7 @@ def test_cygpath_ok(self, case):
@skipUnless(sys.platform == "cygwin", "Paths specifically for Cygwin.")
@ddt.data(
(r"./bar", "bar"),
- (r".\bar", "bar"),
107
+ (r".\bar", "bar"), # FIXME: Mark only this one xfail, somehow (or fix it).
108
(r"../bar", "../bar"),
109
(r"..\bar", "../bar"),
110
(r"../bar/.\foo/../chu", "../bar/chu"),
0 commit comments