From 9e95b3a88fff2813b78c60f919d9c73b677118d0 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 7 Oct 2020 01:04:20 +0100 Subject: [PATCH] tinker with circleci config --- .circleci/config.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 328e3bb..1acb3f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,9 +8,14 @@ jobs: executor: python/default steps: - checkout - - python/load-cache - - python/install-deps - - python/save-cache + - restore_cache: + key: pip-{{ .Branch }} + - run: pip install wagtail + - run: pip install -e . + - save_cache: + key: pip-{{ .Branch }} + paths: + - "~/.cache/pip" - run: command: ./runtests.py name: Test