Skip to content

Commit

Permalink
fix issue with circle ci not finding requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBlanke committed Nov 20, 2021
1 parent e949f8a commit f123560
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements/main.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- python/install-deps
- python/save-cache
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements/main.txt" }}
- run:
command:
python -m pip install --upgrade pip
Expand Down

0 comments on commit f123560

Please sign in to comment.