File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 12
12
- checkout
13
13
- restore_cache :
14
14
keys :
15
- - v1-dependencies-<< parameters.python >>-{{ checksum "requirements.txt" }}-{{ checksum "requirements-dev.txt " }}
15
+ - v1-dependencies-<< parameters.python >>-{{ checksum "setup.py " }}
16
16
# fallback to using the latest cache if no exact match is found
17
17
- v1-dependencies-<< parameters.python >>--
18
18
- run :
21
21
pip install virtualenv
22
22
virtualenv venv
23
23
source venv/bin/activate
24
- pip install -r requirements.txt
25
- pip install -r requirements-dev.txt
24
+ pip install .[dev]
26
25
- run :
27
26
name : Run Unit Tests
28
27
command : |
37
36
- save_cache :
38
37
paths :
39
38
- ./venv
40
- key : v1-dependencies-<< parameters.python >>-{{ checksum "requirements.txt" }}-{{ checksum "requirements-dev.txt " }}
39
+ key : v1-dependencies-<< parameters.python >>-{{ checksum "setup.py " }}
41
40
42
41
workflows :
43
42
python-v2.7 :
You can’t perform that action at this time.
0 commit comments