From 6d366292941ef77d32f42b56868750dbf331fc95 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 11 Dec 2017 10:25:29 -0600 Subject: [PATCH] Add output of slowest tests to UT runs With the switch to stestr we lost the automatic output of the slowest tests. We can still get that output, but it is a separate command to run after the tests. Add that to our tox.ini command for test execution. Change-Id: I37937c1ebe4a10b896f1deb77f64b520ceba2830 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 98e14b2fd31..ab89fb5c0a6 100644 --- a/tox.ini +++ b/tox.ini @@ -25,6 +25,7 @@ deps = -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.pyc" -delete stestr run '{posargs}' + stestr slowest whitelist_externals = bash