Code Review
/
sdnvpn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
0800356
)
Set unlimited instance quotas to fix CI
87/30687/1
author
tomsou
<soth@intracom-telecom.com>
Wed, 15 Mar 2017 08:41:30 +0000
(08:41 +0000)
committer
Nikolas Hermanns
<nikolas.hermanns@ericsson.com>
Thu, 16 Mar 2017 12:27:36 +0000
(12:27 +0000)
JIRA: SDNVPN-115
Change-Id: I4e24800e897702b8b5aa5ef0227925d66d552f02
Signed-off-by: tomsou <soth@intracom-telecom.com>
(cherry picked from commit
38e72ad1c9e4fbf4421e6314ab9a5468a5b29d34
)
sdnvpn/test/functest/run_tests.py
patch
|
blob
|
history
diff --git
a/sdnvpn/test/functest/run_tests.py
b/sdnvpn/test/functest/run_tests.py
index
e828af3
..
9acfa0f
100644
(file)
--- 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)