snapshot/lib/snapshot/test_command_generator.rb in fastlane-2.154.0 vs snapshot/lib/snapshot/test_command_generator.rb in fastlane-2.155.0
- old
+ new
@@ -31,11 +31,12 @@
return pipe
end
xcpretty = "xcpretty #{Snapshot.config[:xcpretty_args]}"
xcpretty << "--no-color" if Helper.colors_disabled?
-
- return pipe << "| #{xcpretty}"
+ pipe << "| #{xcpretty}"
+ pipe << "> /dev/null" if Snapshot.config[:suppress_xcode_output]
+ return pipe
end
def destination(devices)
unless verify_devices_share_os(devices)
UI.user_error!('All devices provided to snapshot should run the same operating system')