diff --git a/_pytest/terminal.py b/_pytest/terminal.py index 5365b4300..9efa3841c 100644 --- a/_pytest/terminal.py +++ b/_pytest/terminal.py @@ -64,8 +64,10 @@ def getreportopt(config): reportchars = config.option.reportchars if reportchars: for char in reportchars: - if char not in reportopts: + if char not in reportopts and char != 'a': reportopts += char + elif char == 'a': + reportopts = 'fEsxXw' return reportopts def pytest_report_teststatus(report):