Skip to content

Commit e437175

Browse files
author
Rami Chowdhury
committed
Move caching to a more useful place
1 parent 58e74d8 commit e437175

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,18 @@ jobs:
2323
command: |
2424
poetry install
2525
26+
- run:
27+
name: Run all the testing steps
28+
command: |
29+
poetry run tox
30+
2631
# Save the specified path as a cache. This is the path Poetry uses to install the dependencies
2732
# So if you don't install anything new, this folder won't change and the cache will be effective
2833
- save_cache:
2934
key: deps-{{ checksum "poetry.lock" }}
3035
paths:
3136
- /home/circleci/.cache/pypoetry/virtualenvs
32-
33-
- run:
34-
name: Run all the testing steps
35-
command: |
36-
poetry run tox
37+
- /home/circleci/project/.tox
3738

3839
deployment:
3940
docker:

0 commit comments

Comments
 (0)