Skip to content

Commit

Permalink
disable failing python-3-5-orca build
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaskruchten committed Aug 18, 2020
1 parent 58fc52e commit b78a1a8
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,36 @@ jobs:
- store_artifacts:
path: plotly/tests/test_orca/images/linux/failed

python-3-5-orca:
docker:
- image: circleci/node:10.9-stretch-browsers
environment:
PYTHON_VERSION: 3.5

steps:
- checkout
- restore_cache:
keys:
- conda-35-v1-{{ checksum ".circleci/create_conda_optional_env.sh" }}
- run:
name: Create conda environment
command: .circleci/create_conda_optional_env.sh

- save_cache:
key: conda-35-v1-{{ checksum ".circleci/create_conda_optional_env.sh" }}
paths:
- /home/circleci/miniconda/
- run:
name: Run Tests
command: |
. /home/circleci/miniconda/etc/profile.d/conda.sh
conda activate circle_optional
pytest --disable-warnings packages/python/plotly/plotly/tests/test_core
pytest packages/python/plotly/plotly/tests/test_orca
- store_artifacts:
path: plotly/tests/test_orca/images/linux/failed

python-3-7-orca:
docker:
- image: circleci/node:10.9-stretch-browsers
Expand Down Expand Up @@ -477,6 +507,5 @@ workflows:
- python-3.7-optional
- python-3.7-plot_ly
- python-2-7-orca
- python-3-5-orca
- python-3-7-orca
- build-doc

0 comments on commit b78a1a8

Please sign in to comment.