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 07aed48 commit 5e1c811Copy full SHA for 5e1c811
.circleci/config.yml
@@ -24,9 +24,19 @@ jobs:
24
steps:
25
- add_ssh_keys
26
- checkout
27
+ - restore_cache:
28
+ key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
29
- run:
30
name: Install dependencies
- command: sudo pip install -r development.txt
31
+ command: |
32
+ sudo pip install pipenv
33
+ pipenv install -r development.txt
34
+ - save_cache:
35
36
+ paths:
37
+ - "/usr/local/bin"
38
+ - "/usr/local/lib/python2.7/site-packages"
39
40
name: Run tests
- command: python -m django test --settings=eb_sqs.test_settings
41
42
+ pipenv run python -m django test --settings=eb_sqs.test_settings
0 commit comments