We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58e74d8 commit e437175Copy full SHA for e437175
.circleci/config.yml
@@ -23,17 +23,18 @@ jobs:
23
command: |
24
poetry install
25
26
+ - run:
27
+ name: Run all the testing steps
28
+ command: |
29
+ poetry run tox
30
+
31
# Save the specified path as a cache. This is the path Poetry uses to install the dependencies
32
# So if you don't install anything new, this folder won't change and the cache will be effective
33
- save_cache:
34
key: deps-{{ checksum "poetry.lock" }}
35
paths:
36
- /home/circleci/.cache/pypoetry/virtualenvs
-
- - run:
- name: Run all the testing steps
- command: |
- poetry run tox
37
+ - /home/circleci/project/.tox
38
39
deployment:
40
docker:
0 commit comments