diff options
author | boucherv <valentin.boucher@orange.com> | 2016-01-15 10:13:44 +0100 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2016-01-15 10:41:38 +0100 |
commit | dee9be014293503645069ff6796f5231b3f7ae48 (patch) | |
tree | e6696821f9c368904bc8d7fa798770476c53f7bc /testcases/config_functest.py | |
parent | be4d2778d535272a3683cb8e518c85065af6a582 (diff) |
Fix bug ruby sig test
Change-Id: Ieb908e7af2365381ad576a3da9a0787f96c9efe2
Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases/config_functest.py')
-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 19d894fb..c2e8737b 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 + "'" |