File tree 1 file changed +21
-13
lines changed
1 file changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,20 @@ jobs:
10
10
11
11
steps :
12
12
- checkout
13
+ - restore_cache :
14
+ keys :
15
+ - tox-v1-{{ checksum "tox.ini" }}
16
+ - tox-v1-
13
17
- run :
14
18
name : Install tox
15
19
command : ' sudo pip install tox'
16
20
- run :
17
21
name : Test with tox
18
22
command : ' tox -e py27-core'
23
+ - save_cache :
24
+ key : tox-v1-{{ checksum "tox.ini" }}
25
+ paths :
26
+ - .tox
19
27
20
28
" python-3.4-core " :
21
29
docker :
@@ -209,16 +217,16 @@ workflows:
209
217
build :
210
218
jobs :
211
219
- " python-2.7-core"
212
- - " python-3.4-core"
213
- - " python-3.5-core"
214
- - " python-3.6-core"
215
- - " python-3.7-core"
216
- - " python-2.7-optional"
217
- - " python-3.4-optional"
218
- - " python-3.5-optional"
219
- - " python-3.6-optional"
220
- # 3.7 optional disabled due to current shapely incompatibility
221
- # - "python-3.7-optional"
222
- - " python-2.7-plot_ly"
223
- - " python-3.4-plot_ly"
224
- - " python-3.7-plot_ly"
220
+ # - "python-3.4-core"
221
+ # - "python-3.5-core"
222
+ # - "python-3.6-core"
223
+ # - "python-3.7-core"
224
+ # - "python-2.7-optional"
225
+ # - "python-3.4-optional"
226
+ # - "python-3.5-optional"
227
+ # - "python-3.6-optional"
228
+ # # 3.7 optional disabled due to current shapely incompatibility
229
+ # # - "python-3.7-optional"
230
+ # - "python-2.7-plot_ly"
231
+ # - "python-3.4-plot_ly"
232
+ # - "python-3.7-plot_ly"
You can’t perform that action at this time.
0 commit comments