[ARVADOS] updated: 1.1.3-130-g3accec3

Git user git at public.curoverse.com
Sat Mar 3 22:01:08 EST 2018


Summary of changes:
 build/run-tests.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  3accec3b0dca797707a46e68e20b69cabf246281 (commit)
      from  64f2f4f50d0096e00e59791cd729bcc14be4aa08 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 3accec3b0dca797707a46e68e20b69cabf246281
Author: Ward Vandewege <wvandewege at veritasgenetics.com>
Date:   Sat Mar 3 21:58:06 2018 -0500

    When running inside a virtualenv, pip still uses the ~/.cache/pip cache
    directory, unless it is explicitly overridden with XDG_CACHE_HOME.
    
    In the test script, stop using pip's cache directory altogether.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <wvandewege at veritasgenetics.com>

diff --git a/build/run-tests.sh b/build/run-tests.sh
index dd31493..269ed0c 100755
--- a/build/run-tests.sh
+++ b/build/run-tests.sh
@@ -540,13 +540,13 @@ setup_virtualenv "$VENVDIR" --python python2.7
 
 # Needed for run_test_server.py which is used by certain (non-Python) tests.
 pip freeze 2>/dev/null | egrep ^PyYAML= \
-    || pip install PyYAML >/dev/null \
+    || pip install --no-cache-dir PyYAML >/dev/null \
     || fatal "pip install PyYAML failed"
 
 # Preinstall forked version of libcloud, because nodemanager "pip install"
 # won't pick it up by default.
 pip freeze 2>/dev/null | egrep ^apache-libcloud==$LIBCLOUD_PIN \
-    || pip install --pre --ignore-installed https://github.com/curoverse/libcloud/archive/apache-libcloud-$LIBCLOUD_PIN.zip >/dev/null \
+    || pip install --pre --ignore-installed  --no-cache-dir https://github.com/curoverse/libcloud/archive/apache-libcloud-$LIBCLOUD_PIN.zip >/dev/null \
     || fatal "pip install apache-libcloud failed"
 
 # We need an unreleased (as of 2017-08-17) llfuse bugfix, otherwise our fuse test suite deadlocks.

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list