From 3460834244feaf08cc6110dd76f85d287f4f134a Mon Sep 17 00:00:00 2001 From: Hongbin Lu Date: Mon, 5 Jun 2017 15:46:55 +0000 Subject: [PATCH] Set concurrency to 1 for OSC tempest tests It looks OSC tests were not designed to run in parallel because there are some race condition between tests. The gate had a few intermittent failure due to that. This commit temporarily disable parallel execution of test cases. Change-Id: Id912b1e21f35b95d70571ab8adc030572294910c --- tools/run_functional.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run_functional.sh b/tools/run_functional.sh index 8a0c380a..479df632 100755 --- a/tools/run_functional.sh +++ b/tools/run_functional.sh @@ -26,4 +26,4 @@ os_service_type=container os_endpoint_type=public END fi -tox -e functional +tox -e functional -- --concurrency=1