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