File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -86,14 +86,32 @@ windows-wheel-steps:
86
86
key : cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
87
87
88
88
docs : &docs
89
- docker :
90
- - image : common
89
+ working_directory : ~/repo
91
90
steps :
91
+ - checkout
92
+ - restore_cache :
93
+ keys :
94
+ - cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
95
+ - run :
96
+ name : install dependencies
97
+ command : |
98
+ python -m pip install --upgrade pip
99
+ python -m pip install tox
92
100
- run :
93
101
name : install latexpdf dependencies
94
102
command : |
95
103
sudo apt-get update
96
104
sudo apt-get install latexmk tex-gyre texlive-fonts-extra
105
+ - run :
106
+ name : run tox
107
+ command : python -m tox run -r
108
+ - save_cache :
109
+ paths :
110
+ - .tox
111
+ - ~/.cache/pip
112
+ - ~/.local
113
+ key : cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
114
+ resource_class : xlarge
97
115
98
116
jobs :
99
117
docs :
You can’t perform that action at this time.
0 commit comments