diff options
author | boucherv <valentin.boucher@orange.com> | 2016-01-04 17:26:19 +0100 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2016-01-04 17:26:19 +0100 |
commit | ab93e47b58512d1f38cebff9adb3e335f937ebdd (patch) | |
tree | 5c335b9a2b7c406a7f5fa64aab457c9d2cc311e2 /testcases | |
parent | 741a052bd607ac3cc838ea59632c5313c34e2d08 (diff) |
Bugfix : Ensure that ruby libraries was installed before running vims test-case
Change-Id: I59d5a4aa1969a1b937e00fd491c4f07e00862687
Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/config_functest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/config_functest.py b/testcases/config_functest.py index 5af2975b1..483c02c4c 100755 --- a/testcases/config_functest.py +++ b/testcases/config_functest.py @@ -116,7 +116,7 @@ def action_start(): exit(-1) # Install ruby libraries for vims test-case - script += 'source /etc/profile.d/rvm.sh; ' + script = 'source /etc/profile.d/rvm.sh; ' script += 'cd ' + VIMS_TEST_DIR + '; ' script += 'bundle install' |