From 120ff7ccdebebdf814e478259ba1e4a8ef6f513e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Fri, 10 Jul 2020 07:13:17 -0700 Subject: [PATCH] Disable Detox tests on Circle CI (#29329) Summary: Disabling Detox tests on Circle CI as the `test_ios_detox*` tests have been broken for a while. Changelog: [Internal] Test Plan: Verified these no longer trigger on Circle CI Reviewed By: cpojer Differential Revision: D22476861 Pulled By: hramos fbshipit-source-id: 3d46786cd7d088d363409e4d35a327e3e997a227 --- .circleci/config.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1fc1f8473fb..9b4c403bec6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -122,7 +122,7 @@ commands: description: Homebrew package to install type: string steps: - - run: + - run: name: "Brew: Install << parameters.package >>" command: HOMEBREW_NO_AUTO_UPDATE=1 brew install << parameters.package >> >/dev/null @@ -411,7 +411,7 @@ jobs: name: Fetch CocoaPods Specs command: | curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf - - run: + - run: name: Setup the CocoaPods environment command: pod setup @@ -430,7 +430,7 @@ jobs: - when: condition: << parameters.run_unit_tests >> steps: - - run: + - run: name: "Run Tests: iOS Unit and Integration Tests" command: yarn test-ios # Runs iOS Detox e2e tests @@ -474,7 +474,7 @@ jobs: parameters: run_disabled_tests: type: boolean - default: false + default: false steps: - restore_cache_checkout: checkout_type: android @@ -783,18 +783,18 @@ workflows: run_unit_tests: true requires: - setup_ios - - test_ios: - name: test_ios_detox - run_disabled_tests: false - run_detox_tests: true - requires: - - setup_ios - - test_ios: - name: test_ios_detox_frameworks - use_frameworks: true - run_detox_tests: true - requires: - - setup_ios + # - test_ios: + # name: test_ios_detox + # run_disabled_tests: false + # run_detox_tests: true + # requires: + # - setup_ios + # - test_ios: + # name: test_ios_detox_frameworks + # use_frameworks: true + # run_detox_tests: true + # requires: + # - setup_ios - test_js: name: test_js_prev_lts executor: nodeprevlts