Fix broken test in test_junitxml
This commit is contained in:
parent
d1f2f779ee
commit
767c28d422
|
@ -115,13 +115,16 @@ class TestPython:
|
||||||
def test_error(fixture):
|
def test_error(fixture):
|
||||||
pass
|
pass
|
||||||
@pytest.mark.xfail
|
@pytest.mark.xfail
|
||||||
|
def test_xfail():
|
||||||
|
assert False
|
||||||
|
@pytest.mark.xfail(strict=True)
|
||||||
def test_xpass():
|
def test_xpass():
|
||||||
assert 1
|
assert True
|
||||||
""")
|
""")
|
||||||
result, dom = runandparse(testdir)
|
result, dom = runandparse(testdir)
|
||||||
assert result.ret
|
assert result.ret
|
||||||
node = dom.find_first_by_tag("testsuite")
|
node = dom.find_first_by_tag("testsuite")
|
||||||
node.assert_attr(name="pytest", errors=1, failures=1, skips=1, tests=4)
|
node.assert_attr(name="pytest", errors=1, failures=2, skips=1, tests=5)
|
||||||
|
|
||||||
def test_timing_function(self, testdir):
|
def test_timing_function(self, testdir):
|
||||||
testdir.makepyfile("""
|
testdir.makepyfile("""
|
||||||
|
|
Loading…
Reference in New Issue