From 9576f59ea86f9c79cf352c90d4e1d04452250f54 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Mon, 3 Aug 2015 21:34:34 -0700 Subject: [PATCH] Enable testr OS_DEBUG to be TRACE(blather) by default This enables the oslo.test recent change to be able to capture/output the verbose trace/blather log level which taskflow has been using. This should help make it easier to diagnosis issues that happen when needed. Change-Id: Ia3c63e66e4b4ad5523a5e0c6ba44b35b918c2acd --- .testr.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/.testr.conf b/.testr.conf index 8aa2cd00..339bf3e7 100644 --- a/.testr.conf +++ b/.testr.conf @@ -2,6 +2,7 @@ test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-160} \ + OS_DEBUG=${OS_DEBUG:-TRACE} \ ${PYTHON:-python} -m subunit.run discover -t ./ ./taskflow/tests $LISTOPT $IDOPTION test_id_option=--load-list $IDFILE