consistent failure on all python versions for test_markers_from_parametrize
This commit is contained in:
parent
853975d93b
commit
78a82c05ef
|
@ -1133,6 +1133,7 @@ def test_addmarker_getmarker():
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.issue("https://github.com/pytest-dev/pytest/issues/3605")
|
@pytest.mark.issue("https://github.com/pytest-dev/pytest/issues/3605")
|
||||||
|
@pytest.mark.filterwarnings("ignore")
|
||||||
def test_markers_from_parametrize(testdir):
|
def test_markers_from_parametrize(testdir):
|
||||||
testdir.makepyfile(
|
testdir.makepyfile(
|
||||||
"""
|
"""
|
||||||
|
@ -1167,4 +1168,4 @@ def test_markers_from_parametrize(testdir):
|
||||||
)
|
)
|
||||||
|
|
||||||
result = testdir.runpytest()
|
result = testdir.runpytest()
|
||||||
result.assertoutcome(failed=0)
|
result.assert_outcomes(failed=0)
|
||||||
|
|
Loading…
Reference in New Issue