Skip to content

Commit b198bf1

Browse files
committed
Express known test_depth failure with xfail
Rather than skipping, so it becomes known if the situation changes.
1 parent 8923236 commit b198bf1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: test/test_submodule.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1050,9 +1050,8 @@ class Repo(object):
10501050
msg = '_to_relative_path should be "submodule_path" but was "%s"' % relative_path
10511051
assert relative_path == "submodule_path", msg
10521052

1053-
@skipIf(
1054-
True,
1055-
"for some unknown reason the assertion fails, even though it in fact is working in more common setup",
1053+
@pytest.mark.xfail(
1054+
reason="for some unknown reason the assertion fails, even though it in fact is working in more common setup",
10561055
)
10571056
@with_rw_directory
10581057
def test_depth(self, rwdir):

0 commit comments

Comments
 (0)