From 2196626ea5662b15dea69ec110e149d77f02e3b5 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Wed, 3 Sep 2014 21:31:06 +0000 Subject: [PATCH] Unbreak debugging via testr Unconditionally capturing stdout and stderr makes debugging quite hard, since we can't see what we're typing. Change-Id: I89b721b74821dac150dac9df74d31a8f9bbfe8da --- .testr.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.testr.conf b/.testr.conf index 1a61078d7e..d36dbaf7b4 100644 --- a/.testr.conf +++ b/.testr.conf @@ -1,4 +1,4 @@ [DEFAULT] -test_command=OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_TEST_TIMEOUT=60 ${PYTHON:-python} -m subunit.run discover -t ./ ${TESTS_DIR:-./ironic/tests/} $LISTOPT $IDOPTION +test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} OS_TEST_TIMEOUT=60 ${PYTHON:-python} -m subunit.run discover -t ./ ${TESTS_DIR:-./ironic/tests/} $LISTOPT $IDOPTION test_id_option=--load-list $IDFILE test_list_option=--list