Skip to content

Commit

Permalink
Circle: Remove obsolete check (#2371)
Browse files Browse the repository at this point in the history
As discussed at #2314.
  • Loading branch information
paulmelnikow committed Nov 21, 2018
1 parent 705d3db commit 5c577bf
Showing 1 changed file with 4 additions and 24 deletions.
28 changes: 4 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,21 +172,11 @@ jobs:

- run:
name: Identify services tagged in the PR title
command: |
if [[ ! -z $CI_PULL_REQUEST ]]; then
npm run test:services:pr:prepare
else
echo 'This is not a pull request. Skipping.'
fi
command: npm run test:services:pr:prepare

- run:
name: Run tests for tagged services
command: |
if [[ ! -z $CI_PULL_REQUEST ]]; then
npm run test:services:pr:run
else
echo 'This is not a pull request. Skipping.'
fi
command: npm run test:services:pr:run

services@node-latest:
docker:
Expand All @@ -211,21 +201,11 @@ jobs:

- run:
name: Identify services tagged in the PR title
command: |
if [[ ! -z $CI_PULL_REQUEST ]]; then
npm run test:services:pr:prepare
else
echo 'This is not a pull request. Skipping.'
fi
command: npm run test:services:pr:prepare

- run:
name: Run tests for tagged services
command: |
if [[ ! -z $CI_PULL_REQUEST ]]; then
npm run test:services:pr:run
else
echo 'This is not a pull request. Skipping.'
fi
command: npm run test:services:pr:run

workflows:
version: 2
Expand Down

0 comments on commit 5c577bf

Please sign in to comment.