Skip to content

Commit

Permalink
plural tests directory
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronRobson committed May 27, 2021
1 parent 55a8c61 commit a806567
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt"}}-{{ checksum "test/requirements.txt"}}
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt"}}-{{ checksum "tests/requirements.txt"}}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

Expand All @@ -37,7 +37,7 @@ jobs:
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt"}}-{{ checksum "test/requirements.txt"}}
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt"}}-{{ checksum "tests/requirements.txt"}}

- run:
name: run checks
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install-packages:
pip3 install --upgrade \
-r dev-requirements.txt \
-r requirements.txt \
-r test/requirements.txt
-r tests/requirements.txt

.PHONY: check
check: lint typecheck
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a806567

Please sign in to comment.