We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
xctestrun
1 parent c517adf commit c843473Copy full SHA for c843473
fastlane/Fastfile
@@ -1044,7 +1044,9 @@ lane :test_without_building do |options|
1044
e.include?(options[:name])
1045
end.first
1046
1047
- UI.user_error!('Unable to find .xctestrun file') unless !xctestrun_path.nil? && File.exist?((xctestrun_path))
+ unless !xctestrun_path.nil? && File.exist?((xctestrun_path))
1048
+ UI.user_error!("Unable to find .xctestrun file at #{xctestrun_path}")
1049
+ end
1050
1051
run_tests(
1052
workspace: 'WooCommerce.xcworkspace',
0 commit comments