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 0f7c7a9 commit f9f41e6Copy full SHA for f9f41e6
src/_pytest/terminal.py
@@ -170,7 +170,7 @@ def getreportopt(config):
170
if char == "a":
171
reportopts = "sxXwEf"
172
elif char == "A":
173
- reportopts = "sxXwEfpP"
+ reportopts = "PpsxXwEf"
174
break
175
elif char not in reportopts:
176
reportopts += char
testing/test_terminal.py
@@ -893,7 +893,7 @@ class Option(object):
893
assert getreportopt(config) == "sxXwEf" # NOTE: "w" included!
894
895
config.option.reportchars = "A"
896
- assert getreportopt(config) == "sxXwEfpP"
+ assert getreportopt(config) == "PpsxXwEf"
897
898
899
def test_terminalreporter_reportopt_addopts(testdir):
0 commit comments