Display node ids and the warnings generated by it

The rationale of using node ids is that users can copy/paste it to run a chosen test
This commit is contained in:
Bruno Oliveira
2017-03-04 20:53:42 -03:00
parent bddb922f7b
commit 272afa9422
3 changed files with 44 additions and 21 deletions

View File

@@ -2,6 +2,9 @@
This is a good source for looking at the various reporting hooks.
"""
import operator
import itertools
from _pytest.main import EXIT_OK, EXIT_TESTSFAILED, EXIT_INTERRUPTED, \
EXIT_USAGEERROR, EXIT_NOTESTSCOLLECTED
import pytest
@@ -28,7 +31,7 @@ def pytest_addoption(parser):
"--disable-warnings is set")
group._addoption('--disable-warnings', '--disable-pytest-warnings', default=False,
dest='disable_warnings', action='store_true',
help='disable warnings summary, overrides -r w flag')
help='disable warnings summary')
group._addoption('-l', '--showlocals',
action="store_true", dest="showlocals", default=False,
help="show locals in tracebacks (disabled by default).")
@@ -438,16 +441,15 @@ class TerminalReporter(object):
def summary_warnings(self):
if self.hasopt("w"):
warnings = self.stats.get("warnings")
if not warnings:
all_warnings = self.stats.get("warnings")
if not all_warnings:
return
self.write_sep("=", "warnings summary")
for w in warnings:
msg = ''
if w.fslocation:
msg += str(w.fslocation) + ' '
msg += w.message
self._tw.line(msg)
self.write_sep("=", "warnings summary", yellow=True, bold=False)
grouped = itertools.groupby(all_warnings, key=operator.attrgetter('nodeid'))
for nodeid, warnings in grouped:
self._tw.line(str(nodeid))
for w in warnings:
self._tw.line(w.message)
self._tw.line('-- Docs: http://doc.pytest.org/en/latest/warnings.html')
def summary_passes(self):

View File

@@ -63,7 +63,7 @@ def catch_warnings_for_item(item):
msg = warnings.formatwarning(
warning.message, warning.category,
warning.filename, warning.lineno, warning.line)
item.config.warn("unused", msg, fslocation=None)
item.warn("unused", msg)
@pytest.hookimpl(hookwrapper=True)