diff options
author | 2017-03-29 11:31:03 -0400 | |
---|---|---|
committer | 2017-03-29 11:31:15 -0400 | |
commit | 8db6fc616bddfa54381ea2d54eda1421f6d06e75 (patch) | |
tree | 36ae9df79b6763b7e9b468d590b9e72d19385c41 | |
parent | c1bf545e0e7c39502d555b6f9a9a0ac942597a38 (diff) |
Update to onap and add --no-cache-dir
Change-Id: I97a2c0012809aeefb549681db518155b3daf645f
Signed-off-by: Jerry Flood <jf9860@att.com>
-rw-r--r-- | setup.sh | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -27,11 +27,11 @@ else cd python-testing-utils git pull origin master else - git clone https://gerrit.openecomp.org/r/testsuite/python-testing-utils.git + git clone https://gerrit.onap.org/r/testsuite/python-testing-utils.git cd python-testing-utils fi fi -pip install --upgrade --target="$path/robot/library" . +pip install --no-cache-dir --upgrade --target="$path/robot/library" . if [ -d $path/testsuite/heatbridge ] @@ -46,17 +46,17 @@ else cd heatbridge git pull origin master else - git clone https://gerrit.openecomp.org/r/testsuite/heatbridge.git + git clone https://gerrit.onap.org/r/testsuite/heatbridge.git cd heatbridge fi fi -pip install --upgrade --target="$path/robot/library" . +pip install --no-cache-dir --upgrade --target="$path/robot/library" . # NOTE: Patch to incude explicit install of paramiko to 2.0.2 to work with sshlibrary 2.1.2 # This should be removed on new release of paramiko (2.1.2) or sshlibrary # https://github.com/robotframework/SSHLibrary/issues/157 -pip install --target="$path/robot/library" -U 'paramiko==2.0.2' +pip install --no-cache-dir --target="$path/robot/library" -U 'paramiko==2.0.2' # # Get the appropriate chromedriver. Default to linux64 |