From ea39e3c98275f79649e9c712dc2490fd1b1c6f21 Mon Sep 17 00:00:00 2001 From: mpariente Date: Sun, 15 Mar 2020 14:07:56 +0100 Subject: [PATCH] [ci] Don't cache pip anymore (faster build) --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0d2ae49bc..f2c2317c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: python # the build almost instantly (but adding to the cache takes a while). cache: directories: - - $HOME/.cache/pip +# - $HOME/.cache/pip - $HOME/virtualenv/python3.6.7/lib/python3.6/site-packages env: # List packages that you want to reinstall everytime @@ -21,7 +21,6 @@ install: - for package in $NO_CACHE; do pip uninstall -y ${package}; done - pip install numpy Cython - pip install pytest coverage codecov -# - pip install pb_bss@git+https://github.com/mpariente/pb_bss - pip install -r requirements.txt - pip install -r docs/requirements.txt - pip install -e . --no-deps