summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Goirand <zigo@debian.org>2015-04-27 14:58:44 +0200
committerThomas Goirand <zigo@debian.org>2015-04-27 15:00:14 +0200
commit166726d545aa912e08a2466330296f9f9e13fe7e (patch)
treecd082caaafb6bdfe326c73dcd5ff7bb000a92aa7
parente52fdfaf187544b54b295e8efb5931086ce873f6 (diff)
downloadoslo-serialization-166726d545aa912e08a2466330296f9f9e13fe7e.tar.gz
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
-rw-r--r--.testr.conf2
1 files changed, 1 insertions, 1 deletions
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