From 79ebca3f30e13b2e61fe476b10200b5923d54f6d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 23 Sep 2015 01:09:09 -0300 Subject: [PATCH] (w)warnings -> (w)pytest-warnings in "-r chars" help --- _pytest/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/terminal.py b/_pytest/terminal.py index 21bdc9fc9..ce4a88bc0 100644 --- a/_pytest/terminal.py +++ b/_pytest/terminal.py @@ -22,7 +22,7 @@ def pytest_addoption(parser): group._addoption('-r', action="store", dest="reportchars", default=None, metavar="chars", help="show extra test summary info as specified by chars (f)ailed, " - "(E)error, (s)skipped, (x)failed, (X)passed (w)warnings (a)all.") + "(E)error, (s)skipped, (x)failed, (X)passed (w)pytest-warnings (a)all.") group._addoption('-l', '--showlocals', action="store_true", dest="showlocals", default=False, help="show locals in tracebacks (disabled by default).")