Skip to content

Commit

Permalink
tinker with circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman committed Oct 7, 2020
1 parent f7becbe commit 9e95b3a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .circleci/config.yml
Expand Up @@ -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
Expand Down

0 comments on commit 9e95b3a

Please sign in to comment.