From 20d4f1a1f18a43dfd930e5fc955610e3e8bc3bba Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Fri, 10 Jul 2020 17:45:32 -0700 Subject: [PATCH] Remove xcpretty from unit tests to see full output on test failures --- testing/ios/IosUnitTests/run_tests.sh | 8 +------- testing/scenario_app/run_ios_tests.sh | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/testing/ios/IosUnitTests/run_tests.sh b/testing/ios/IosUnitTests/run_tests.sh index 3ce96a077a5a3..6c44de0aef00f 100755 --- a/testing/ios/IosUnitTests/run_tests.sh +++ b/testing/ios/IosUnitTests/run_tests.sh @@ -8,15 +8,9 @@ if [ $# -eq 1 ]; then FLUTTER_ENGINE=$1 fi -PRETTY="cat" -if which xcpretty; then - PRETTY="xcpretty" -fi - set -o pipefail && xcodebuild -sdk iphonesimulator \ -scheme IosUnitTests \ -destination 'platform=iOS Simulator,name=iPhone 8' \ test \ - FLUTTER_ENGINE=$FLUTTER_ENGINE | $PRETTY - + FLUTTER_ENGINE=$FLUTTER_ENGINE popd diff --git a/testing/scenario_app/run_ios_tests.sh b/testing/scenario_app/run_ios_tests.sh index 14e3a31b9f22f..a1ad83dff1853 100755 --- a/testing/scenario_app/run_ios_tests.sh +++ b/testing/scenario_app/run_ios_tests.sh @@ -8,11 +8,6 @@ if [ $# -eq 1 ]; then FLUTTER_ENGINE=$1 fi -PRETTY="cat" -if which xcpretty; then - PRETTY="xcpretty" -fi - cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd # Delete after LUCI push. @@ -24,6 +19,5 @@ set -o pipefail && xcodebuild -sdk iphonesimulator \ -scheme Scenarios \ -destination 'platform=iOS Simulator,name=iPhone 8' \ test \ - FLUTTER_ENGINE=$FLUTTER_ENGINE | $PRETTY - + FLUTTER_ENGINE=$FLUTTER_ENGINE popd