Skip to content

Commit 8714a99

Browse files
committed
Ignore Python 3.8 specific failure in pytest for now
1 parent 453cbd8 commit 8714a99

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

testing/acceptance_test.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ def test_fail2():
115115
assert result.ret == 2
116116
result.stdout.fnmatch_lines(["*Interrupted: stopping*1*", "*1 failed*"])
117117

118+
@pytest.mark.xfail(
119+
reason="#527: Python 3.8 failure in pytest where testdir.tmpdir returns an unexpected value"
120+
)
118121
def test_basetemp_in_subprocesses(self, testdir):
119122
p1 = testdir.makepyfile(
120123
"""
@@ -186,6 +189,7 @@ def test_crash():
186189
)
187190
assert result.ret == 1
188191

192+
@pytest.mark.xfail(reason="#527: Ignore Python 3.8 failure for the time being")
189193
def test_distribution_rsyncdirs_example(self, testdir, monkeypatch):
190194
# use a custom plugin that has a custom command-line option to ensure
191195
# this is propagated to workers (see #491)

0 commit comments

Comments
 (0)