From 166726d545aa912e08a2466330296f9f9e13fe7e Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Mon, 27 Apr 2015 14:58:44 +0200 Subject: [PATCH] Fixes wrong folder for listing tests oslo.serialization had ./tests in its .testr.conf instead of just ., which as a result didn't run the tests inside ./oslo_serialization. This is quite bad, because what's important right now is the new tests in the non-namespace folder. This patch fixes this, and allow to run all tests. Change-Id: Ic8d7409b214864d6350c76fd6d86c430a7380e8c --- .testr.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.testr.conf b/.testr.conf index 19721fc..fb62267 100644 --- a/.testr.conf +++ b/.testr.conf @@ -2,6 +2,6 @@ test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \ - ${PYTHON:-python} -m subunit.run discover -t ./ ./tests $LISTOPT $IDOPTION + ${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION test_id_option=--load-list $IDFILE test_list_option=--list \ No newline at end of file