From d3fd6c77b624d938780eddebe39a5a9ccd964ad2 Mon Sep 17 00:00:00 2001 From: junboli Date: Tue, 10 Oct 2017 18:03:00 +0800 Subject: [PATCH] tests: replace .testr.conf with .stestr.conf TrivialFix:In the change[1] os_testr changed under the covers from using testr to stestr, so that we now get the following warning: ostestr.py:120: UserWarning: No .stestr.conf file found in the CWD. Please create one to to replace the .testr.conf. You can find a script to do this in the stestr git repository. So remove the .testr.conf and add .stestr.conf which was generated using a utility script as documented here [2]. [1] Id7cb2a39a8308f1413608dcf19273a1d7f33592e [2] https://media.readthedocs.org/pdf/stestr/stable/stestr.pdf Change-Id: I9fd1dba15e2e8fbb30208f44baea0f9d69ee4b93 --- .gitignore | 1 + .stestr.conf | 3 +++ .testr.conf | 8 -------- 3 files changed, 4 insertions(+), 8 deletions(-) create mode 100644 .stestr.conf delete mode 100644 .testr.conf diff --git a/.gitignore b/.gitignore index 66a094ea..a1dbcfcd 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ pip-log.txt # Unit test / coverage reports .coverage +.stestr/* .tox nosetests.xml cover/* diff --git a/.stestr.conf b/.stestr.conf new file mode 100644 index 00000000..b27ce3de --- /dev/null +++ b/.stestr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_path=${TEST_PATH:-./qinling/tests} +top_dir=./ diff --git a/.testr.conf b/.testr.conf deleted file mode 100644 index c4b60c06..00000000 --- a/.testr.conf +++ /dev/null @@ -1,8 +0,0 @@ -[DEFAULT] -test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ - OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ - OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \ - OS_LOG_CAPTURE=${OS_LOG_CAPTURE:-1} \ - ${PYTHON:-python} -m subunit.run discover -t ./ ./qinling/tests $LISTOPT $IDOPTION -test_id_option=--load-list $IDFILE -test_list_option=--list