From d8630f2ead8df966e12ec4afaa3704b3376d7c3d Mon Sep 17 00:00:00 2001 From: zhaoleilc <15247232416@163.com> Date: Sun, 9 Feb 2020 09:35:02 +0800 Subject: [PATCH] Fix stestr command error in doc This patch change "stestr run -n --load-list" to "stestr run --load-list" in 242 line in doc/source/contributor/testing.rst. Change-Id: Ifa0f59f651d6e88a01f506e96dcbcd03a4be7b9f Closes-Bug: #1862274 --- doc/source/contributor/testing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst index e1671328e2f..acacf6973da 100644 --- a/doc/source/contributor/testing.rst +++ b/doc/source/contributor/testing.rst @@ -239,4 +239,4 @@ Then run the unit test with pdb enabled: # Or to get a list of tests to run stestr list test_volume_utils > tests_to_run.txt - stestr run -n --load-list tests_to_run.txt + stestr run --load-list tests_to_run.txt