From a09d0bc82e70ffa87b1e3994fe6512e545c70dcc Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Tue, 9 Oct 2018 14:11:08 -0500 Subject: [PATCH] chore(ci): use || true to combine the screenshot command --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ddd05304d9..3c74b4ffb4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -95,7 +95,7 @@ jobs: at: /tmp/workspace - run: name: Run Screenshot - command: npx stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci --runInBand ; exit 0 + command: npx stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci --runInBand || true working_directory: /tmp/workspace/core test-core-screenshot-master: @@ -106,7 +106,7 @@ jobs: at: /tmp/workspace - run: name: Run Screenshot - command: npx stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci --runInBand --update-screenshot ; exit 0 + command: npx stencil test --e2e --screenshot --screenshot-connector=scripts/screenshot/ci.js --ci --runInBand --update-screenshot || true working_directory: /tmp/workspace/core workflows: