File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
sudo chown -R circleci:circleci /usr/local/bin
11
11
sudo chown -R circleci:circleci /usr/local/lib/python2.7/site-packages
12
12
- restore_cache :
13
- key : deps2-{{ .Branch }}-{{ checksum "requirements.txt " }}
13
+ key : deps2-{{ .Branch }}-{{ checksum "setup.py " }}
14
14
- run :
15
15
command : |
16
- pip install -r requirements.txt
16
+ pip install .[test]
17
17
pip install codecov
18
18
- save_cache :
19
- key : deps2-{{ .Branch }}-{{ checksum "requirements.txt " }}
19
+ key : deps2-{{ .Branch }}-{{ checksum "setup.py " }}
20
20
paths :
21
21
- " .venv"
22
22
- " /usr/local/bin"
@@ -35,13 +35,13 @@ jobs:
35
35
sudo chown -R circleci:circleci /usr/local/bin
36
36
sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
37
37
- restore_cache :
38
- key : deps3-{{ .Branch }}-{{ checksum "requirements.txt " }}
38
+ key : deps3-{{ .Branch }}-{{ checksum "setup.py " }}
39
39
- run :
40
40
command : |
41
- pip install -r requirements.txt
41
+ pip install .[test]
42
42
pip install codecov
43
43
- save_cache :
44
- key : deps3-{{ .Branch }}-{{ checksum "requirements.txt " }}
44
+ key : deps3-{{ .Branch }}-{{ checksum "setup.py " }}
45
45
paths :
46
46
- " .venv"
47
47
- " /usr/local/bin"
You can’t perform that action at this time.
0 commit comments