aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2017-10-28 22:18:15 +0300
committerMatti Picus <matti.picus@gmail.com>2017-10-28 22:18:15 +0300
commitcbfc50b846a4c04b6e1dcf3eedd17648e615d933 (patch)
tree0c695ac966f807d7129622b15e60511383eca2fe /_pytest
parentfinally, add two FAQs about numpy and numpypy (diff)
downloadpypy-cbfc50b846a4c04b6e1dcf3eedd17648e615d933.tar.gz
pypy-cbfc50b846a4c04b6e1dcf3eedd17648e615d933.tar.bz2
pypy-cbfc50b846a4c04b6e1dcf3eedd17648e615d933.zip
move test summary to end on terminal, after the multiple pages of failure info, typos
Diffstat (limited to '_pytest')
-rw-r--r--_pytest/terminal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/terminal.py b/_pytest/terminal.py
index 825f553ef2..6cdf0a6947 100644
--- a/_pytest/terminal.py
+++ b/_pytest/terminal.py
@@ -366,11 +366,11 @@ class TerminalReporter:
EXIT_OK, EXIT_TESTSFAILED, EXIT_INTERRUPTED, EXIT_USAGEERROR,
EXIT_NOTESTSCOLLECTED)
if exitstatus in summary_exit_codes:
- self.config.hook.pytest_terminal_summary(terminalreporter=self)
self.summary_errors()
self.summary_failures()
self.summary_warnings()
self.summary_passes()
+ self.config.hook.pytest_terminal_summary(terminalreporter=self)
if exitstatus == EXIT_INTERRUPTED:
self._report_keyboardinterrupt()
del self._keyboardinterrupt_memo