From e3012258aefd38ae3948a9b90bb607d1c63fa3c5 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Fri, 6 Jul 2018 12:47:45 -0700 Subject: [PATCH] Do not restore cache for bundle tests --- .circleci/config.yml | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bd75c1b..3dacf30 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,14 +58,12 @@ jobs: <<: *python_35_base steps: - checkout - - restore_cache: - key: v2-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile.lock" }}-py35 - - run: - name: Check PEP 508 Requirements - command: pipenv check - run: name: Install Python dependencies with Pipenv command: pipenv sync --three --dev + - run: + name: Check PEP 508 Requirements + command: pipenv check - save_cache: paths: - "~/.local/share/virtualenvs/" @@ -75,14 +73,12 @@ jobs: <<: *python_36_base steps: - checkout - - restore_cache: - key: v2-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile.lock" }}-py36 - - run: - name: Check PEP 508 Requirements - command: pipenv check - run: name: Install Python dependencies with Pipenv command: pipenv sync --three --dev + - run: + name: Check PEP 508 Requirements + command: pipenv check - save_cache: paths: - "~/.local/share/virtualenvs/" @@ -92,14 +88,12 @@ jobs: <<: *python_37_base steps: - checkout - - restore_cache: - key: v2-deps-{{ .Environment.CIRCLE_WORKFLOW_ID }}-{{ checksum "Pipfile.lock" }}-py37 - - run: - name: Check PEP 508 Requirements - command: pipenv check - run: name: Install Python dependencies with Pipenv command: pipenv sync --three --dev + - run: + name: Check PEP 508 Requirements + command: pipenv check - save_cache: paths: - "~/.local/share/virtualenvs/"