Skip to content

Commit

Permalink
WIP: try updating cache since we've changed the base image
Browse files Browse the repository at this point in the history
  • Loading branch information
cookpa committed Apr 20, 2022
1 parent 20f0699 commit fba49d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v2-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v2-dependencies-

- run:
name: install dependencies
Expand All @@ -49,7 +49,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}
key: v2-dependencies-{{ checksum "requirements.txt" }}

- run:
name: run tests
Expand Down

0 comments on commit fba49d9

Please sign in to comment.