consistent failure on all python versions for test_markers_from_parametrize

This commit is contained in:
Ronny Pfannschmidt 2018-06-20 22:44:19 +02:00
parent 853975d93b
commit 78a82c05ef
1 changed files with 2 additions and 1 deletions

View File

@ -1133,6 +1133,7 @@ def test_addmarker_getmarker():
@pytest.mark.issue("https://github.com/pytest-dev/pytest/issues/3605")
@pytest.mark.filterwarnings("ignore")
def test_markers_from_parametrize(testdir):
testdir.makepyfile(
"""
@ -1167,4 +1168,4 @@ def test_markers_from_parametrize(testdir):
)
result = testdir.runpytest()
result.assertoutcome(failed=0)
result.assert_outcomes(failed=0)