Skip to content

Commit

Permalink
Disable iOS end-to-end tests (facebook#24962)
Browse files Browse the repository at this point in the history
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: facebook#24962

Differential Revision: D15415872

Pulled By: hramos

fbshipit-source-id: 1a146a2eb36d5bf9b4e1f8cc9daf9b3e4d0cfab1
  • Loading branch information
hramos authored and facebook-github-bot committed May 20, 2019
1 parent adc0878 commit 9785a57
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


# -------------------------
Expand Down

0 comments on commit 9785a57

Please sign in to comment.