summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolas Hermanns <nikolas.hermanns@ericsson.com>2017-03-16 12:28:06 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-03-16 12:28:06 +0000
commitb5bade2905227a5d9a68f7042c5187ad24129cd0 (patch)
tree8243efab4e3a0534ef80ac859f30f34439fb2d76
parent1449ca4be57103e4b74b3bea2b4e15977dd718e7 (diff)
parentcb0925cebb85d8d713d6d620c70916c95019d046 (diff)
Merge "Set unlimited instance quotas to fix CI" into stable/danube
-rw-r--r--sdnvpn/test/functest/run_tests.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/sdnvpn/test/functest/run_tests.py b/sdnvpn/test/functest/run_tests.py
index e828af3..9acfa0f 100644
--- a/sdnvpn/test/functest/run_tests.py
+++ b/sdnvpn/test/functest/run_tests.py
@@ -50,6 +50,13 @@ def main():
output = cmd.read()
logger.debug(output)
+ # Workaround for https://jira.opnfv.org/projects/SDNVPN/issues/SDNVPN-115
+ cmd_line = "nova quota-class-update --instances -1 default"
+ logger.info("Setting instances quota to unlimited : %s" % cmd_line)
+ cmd = os.popen(cmd_line)
+ output = cmd.read()
+ logger.debug(output)
+
with open(COMMON_CONFIG.config_file) as f:
config_yaml = yaml.safe_load(f)