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
This commit is contained in:
Thomas Goirand 2015-04-27 14:58:44 +02:00
parent e52fdfaf18
commit 166726d545
1 changed files with 1 additions and 1 deletions

View File

@ -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