We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7317767 commit d9a2e70Copy full SHA for d9a2e70
_pytest/pytester.py
@@ -107,7 +107,8 @@ def pytest_runtest_protocol(self, item):
107
error.extend([str(f) for f in lines2])
108
error.append(error[0])
109
error.append("*** function %s:%s: %s " % item.location)
110
- pytest.fail("\n".join(error), pytrace=False)
+ error.append("See issue #2366")
111
+ item.warn('', "\n".join(error))
112
113
114
# XXX copied from execnet's conftest.py - needs to be merged
0 commit comments