Skip to content

Commit

Permalink
circleci: fixed cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikkel Clausen committed Jul 30, 2018
1 parent 8d39e9d commit 55d9b1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
# Download and cache python dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "requirements-dev.txt" }}

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

- run:
name: execute nose test
Expand Down

0 comments on commit 55d9b1d

Please sign in to comment.