From 9785a572eecdc6ea89f433a93c157979ca334b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Mon, 20 May 2019 10:12:41 -0700 Subject: [PATCH] Disable iOS end-to-end tests (#24962) Summary: The iOS end-to-end tests are currently broken. I'm disabling them to bring the tests back to green and unblock other PRs, until they can be fixed. ## Changelog [Internal] [Removed] - Disable iOS e2e test Pull Request resolved: https://github.com/facebook/react-native/pull/24962 Differential Revision: D15415872 Pulled By: hramos fbshipit-source-id: 1a146a2eb36d5bf9b4e1f8cc9daf9b3e4d0cfab1 --- .circleci/config.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 30d1e1d7814..7cf18599cbe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -507,15 +507,15 @@ jobs: node ./scripts/run-ci-e2e-tests.js --js --retries 3 when: always - - run: - name: Run iOS End-to-End Tests - command: | - # free up port 8081 for the packager before running tests - set +eo pipefail - lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill - set -eo pipefail - node ./scripts/run-ci-e2e-tests.js --ios --retries 3; - when: always + # - run: + # name: Run iOS End-to-End Tests + # command: | + # # free up port 8081 for the packager before running tests + # set +eo pipefail + # lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill + # set -eo pipefail + # node ./scripts/run-ci-e2e-tests.js --ios --retries 3; + # when: always # -------------------------