File tree 1 file changed +30
-1
lines changed
1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -255,6 +255,36 @@ jobs:
255
255
- store_artifacts :
256
256
path : plotly/tests/test_orca/images/linux/failed
257
257
258
+ python-3-5-orca :
259
+ docker :
260
+ - image : circleci/node:10.9-stretch-browsers
261
+ environment :
262
+ PYTHON_VERSION : 3.5
263
+
264
+ steps :
265
+ - checkout
266
+ - restore_cache :
267
+ keys :
268
+ - conda-35-v1-{{ checksum ".circleci/create_conda_optional_env.sh" }}
269
+ - run :
270
+ name : Create conda environment
271
+ command : .circleci/create_conda_optional_env.sh
272
+
273
+ - save_cache :
274
+ key : conda-35-v1-{{ checksum ".circleci/create_conda_optional_env.sh" }}
275
+ paths :
276
+ - /home/circleci/miniconda/
277
+ - run :
278
+ name : Run Tests
279
+ command : |
280
+ . /home/circleci/miniconda/etc/profile.d/conda.sh
281
+ conda activate circle_optional
282
+ pytest --disable-warnings packages/python/plotly/plotly/tests/test_core
283
+ pytest packages/python/plotly/plotly/tests/test_orca
284
+
285
+ - store_artifacts :
286
+ path : plotly/tests/test_orca/images/linux/failed
287
+
258
288
python-3-7-orca :
259
289
docker :
260
290
- image : circleci/node:10.9-stretch-browsers
@@ -477,6 +507,5 @@ workflows:
477
507
- python-3.7-optional
478
508
- python-3.7-plot_ly
479
509
- python-2-7-orca
480
- - python-3-5-orca
481
510
- python-3-7-orca
482
511
- build-doc
You can’t perform that action at this time.
0 commit comments