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 19035f4 commit ae33279Copy full SHA for ae33279
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
@@ -846,7 +846,7 @@ class Option(object):
846
assert getreportopt(config) == "sxXwEf" # NOTE: "w" included!
847
848
config.option.reportchars = "A"
849
- assert getreportopt(config) == "sxXwEfpP"
+ assert getreportopt(config) == "PpsxXwEf"
850
851
852
def test_terminalreporter_reportopt_addopts(testdir):
0 commit comments