From cb21d844d97ff31eeb8dca8c2e66e9d85d14e0fe Mon Sep 17 00:00:00 2001 From: Eric Siegerman Date: Tue, 30 Jun 2015 19:27:36 -0400 Subject: [PATCH] Add missing "error" status to the list --- _pytest/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/terminal.py b/_pytest/terminal.py index e4181097b..57560f94c 100644 --- a/_pytest/terminal.py +++ b/_pytest/terminal.py @@ -527,7 +527,7 @@ def flatten(l): def build_summary_stats_line(stats): keys = ("failed passed skipped deselected " - "xfailed xpassed warnings").split() + "xfailed xpassed warnings error").split() for key in stats.keys(): if key not in keys: if key: # setup/teardown reports have an empty key, ignore them