diff options
author | 2018-11-19 14:38:45 +0100 | |
---|---|---|
committer | 2018-11-19 14:38:45 +0100 | |
commit | 465dcefcd136847b8de27f83627dba3f76d72715 (patch) | |
tree | c41cc410fb457a552b1e24a8bd84b9d8676e6f36 | |
parent | 475486404eaf7d89dbdafd9ce244efd824371777 (diff) |
Fix functest-virtual (sudo + current dirs)
It completes the previous commit [1] pulling all images.
[1] https://gerrit.opnfv.org/gerrit/#/c/65203/
Change-Id: Id32aabf107064689a38d5ffb719ba5023c40296d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | jjb/functest/functest-virtual.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/functest/functest-virtual.yaml b/jjb/functest/functest-virtual.yaml index fb908baaf..d47e44464 100644 --- a/jjb/functest/functest-virtual.yaml +++ b/jjb/functest/functest-virtual.yaml @@ -12,7 +12,7 @@ parameters: - functest-virtual-defaults builders: - - shell: docker pull {repo}/functest-{container}:{tag} + - shell: sudo docker pull {repo}/functest-{container}:{tag} - project: name: repo-functest-container-tag-pull @@ -58,10 +58,10 @@ -v /home/opnfv/functest/openstack.creds:\ /home/opnfv/functest/conf/env_file \ -v /home/opnfv/functest/images:/home/opnfv/functest/images \ - -v $(pwd)/tempest_blacklist.yaml:\ + -v /home/opnfv/functest/tempest_blacklist.yaml:\ /usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/\ tempest/custom_tests/blacklist.yaml \ - -v $(pwd)/rally_blacklist.yaml:\ + -v /home/opnfv/functest/images/rally_blacklist.yaml:\ /usr/lib/python2.7/site-packages/functest/opnfv_tests/openstack/\ rally/blacklist.yaml \ {repo}/functest-{container}:{tag} run_tests -t {test} |