Skip to content

Commit 7a8a88b

Browse files
committed
Add tox caching for 2.7-core
1 parent a89a9af commit 7a8a88b

File tree

1 file changed

+21
-13
lines changed

1 file changed

+21
-13
lines changed

Diff for: .circleci/config.yml

+21-13
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@ jobs:
1010

1111
steps:
1212
- checkout
13+
- restore_cache:
14+
keys:
15+
- tox-v1-{{ checksum "tox.ini" }}
16+
- tox-v1-
1317
- run:
1418
name: Install tox
1519
command: 'sudo pip install tox'
1620
- run:
1721
name: Test with tox
1822
command: 'tox -e py27-core'
23+
- save_cache:
24+
key: tox-v1-{{ checksum "tox.ini" }}
25+
paths:
26+
- .tox
1927

2028
"python-3.4-core":
2129
docker:
@@ -209,16 +217,16 @@ workflows:
209217
build:
210218
jobs:
211219
- "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"

0 commit comments

Comments
 (0)