From ed068e59b746de6395c33f6f0f5454e69e88d1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Sat, 7 Jul 2018 10:28:07 -0300 Subject: [PATCH] Cache pip cache and do not rebuild tags on appveyor and travis --- appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 4f3c69847..93cfd469e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,12 @@ branches: install: - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - "SET TOX_TESTENV_PASSENV=HOME USERPROFILE HOMEPATH HOMEDRIVE" - - "pip install -U tox twine wheel" + - "pip install -U tox" + build: false +skip_tags: true test_script: - "tox -e %TOX_ENV%" + +cache: + - '%LOCALAPPDATA%\pip\cache'