From 6f4f3f40cc9f4969c31937b156e4229b1b51344a Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Thu, 27 Aug 2015 18:34:37 +0300 Subject: [PATCH] Launch functional tests serially Currently, functional tests are not isolated and each test has access to resources from parallel launched tests. This patch is a hack to isolate tests and give ability to create as many resources as tenant quotas allow. Change-Id: Idc0a60d350e408bdbd67a7a527698be9f4d6b27b --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 9f17a0e33..3ac09aef5 100644 --- a/tox.ini +++ b/tox.ini @@ -35,6 +35,7 @@ commands = [testenv:functional] setenv = OS_TEST_PATH = ./novaclient/tests/functional +commands = python setup.py testr --testr-args='--concurrency=1 {posargs}' [testenv:cover] commands = python setup.py testr --coverage --testr-args='{posargs}'