From c5ce508eeafd1aa82417cd1a9e66cf2fb674b4e6 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 10 Aug 2023 09:25:44 -0700 Subject: [PATCH] Delete unused parameter (#38893) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/38893 This Parameter was false and never set to true. Also, we don't know what that code does and it was not used for more than a year. ## Changelog: [Internal] - Removing not executed code. Reviewed By: cortinico, dmytrorykun Differential Revision: D48189139 fbshipit-source-id: 6a4000f677958aaefadec40d531acb37c98e3ef8 --- .circleci/config.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fd531559f0e..0656a0ddef5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -737,10 +737,6 @@ jobs: description: Specifies whether unit tests should run. type: boolean default: false - run_disabled_tests: - description: Specifies whether disabled tests should run. Set this to true to debug failing tests. - type: boolean - default: false jsengine: default: "Hermes" description: Which JavaScript engine to use. Must be one of "Hermes", "JSC". @@ -828,26 +824,7 @@ jobs: tar -zcvf xcresults.tar.gz $XCRESULT_PATH - store_artifacts: path: /Users/distiller/Library/Developer/Xcode/xcresults.tar.gz - - # Optionally, run disabled tests - - when: - condition: << parameters.run_disabled_tests >> - steps: - - run: echo "Failing tests may be moved here temporarily." - - run: - name: "Run Tests: CocoaPods" - command: ./scripts/process-podspecs.sh - - run: - name: Free up port 8081 for 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 - - run_e2e: - platform: ios # ------------------------- - # Collect Results - report_bundle_size: platform: ios