diff options
author | Daniel Rose <DR695H@list.att.com> | 2017-03-31 14:32:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-03-31 14:32:41 +0000 |
commit | ebf5a03019f7952d1753bef9cb7a3a15a8abebcb (patch) | |
tree | 0406379bf599e0f3ac3125078c2dd94c8887e09b | |
parent | e7d72b3d044553d1c54c0d75ae590ac5a979aa1c (diff) | |
parent | db7987998ad6bc05de07d1e7de8dbb788dbd6cce (diff) |
Merge "Update to onap and add --no-cache-dir"
-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 |