Do not restore cache for bundle tests

pull/188/head
Kieran Prasch 2018-07-06 12:47:45 -07:00
parent fe356c9649
commit e3012258ae
1 changed files with 9 additions and 15 deletions

View File

@ -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/"