diff options
author | boucherv <valentin.boucher@orange.com> | 2016-01-15 10:13:44 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-15 09:51:38 +0000 |
commit | 56bafb321398dd1d5ab65bd6cd92a495ec8aeb23 (patch) | |
tree | e6696821f9c368904bc8d7fa798770476c53f7bc /testcases | |
parent | b241534d5a37ac93368aec79727238e3aed75d43 (diff) |
Fix bug ruby sig test
Change-Id: Ieb908e7af2365381ad576a3da9a0787f96c9efe2
Signed-off-by: boucherv <valentin.boucher@orange.com>
(cherry picked from commit dee9be014293503645069ff6796f5231b3f7ae48)
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/config_functest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py index 19d894fb7..c2e8737b7 100755 --- a/testcases/config_functest.py +++ b/testcases/config_functest.py @@ -115,10 +115,13 @@ def action_start(): action_clean() exit(-1) + logger.info("Installing Ruby libraries for vIMS testcase...") # Install ruby libraries for vims test-case script = 'source /etc/profile.d/rvm.sh; ' script += 'cd ' + VIMS_TEST_DIR + '; ' - script += 'rvm use system;' + script += 'rvm autolibs enable ;' + script += 'rvm install 1.9.3; ' + script += 'rvm use 1.9.3;' script += 'bundle install' cmd = "/bin/bash -c '" + script + "'" |