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 6db03eb commit 13f62b5Copy full SHA for 13f62b5
.circleci/config.yml
@@ -12,7 +12,7 @@ jobs:
12
steps:
13
- checkout
14
- restore_cache:
15
- key: deps1-{{ .Branch }}-{{ checksum "pyproject.toml" }}
+ key: deps2-{{ .Branch }}-{{ checksum "pyproject.toml" }}
16
- run:
17
name: Wait for db
18
command: dockerize -wait tcp://localhost:5432 -timeout 1m
@@ -28,11 +28,13 @@ jobs:
28
poetry config virtualenvs.create false
29
30
command: |
31
+ which python
32
python -m venv ~/.virt
33
+ ls -alh ~/.virt/bin
34
. ~/.virt/bin/activate
35
poetry install
36
- save_cache:
37
38
paths:
39
- "~/.virt"
40
0 commit comments