fastlane: Error when building "Failed to compute path to baseline file during test run spec construction"

New Issue Checklist

Issue Description

Ever since we went to Big Sur, we’ve been seeing the following bizarre errors when we build our test schemes using fastlane:

Text of error:

[10:44:40]: ▸ 2021-05-24 10:44:40.686 xcodebuild[67284:2671438] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678 [10:44:40]: ▸ Details: Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7f8431c64f90> [10:44:40]: ▸ Object: <IDETestRunSpecificationBuilder> [10:44:40]: ▸ Method: +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error: [10:44:40]: ▸ Thread: <NSThread: 0x7f8440c1a850>{number = 1, name = main} [10:44:40]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.

After the error, fastlane just sits there, frozen, for several minutes. Eventually it will go ahead and run the tests but quite often the tests will fail due to timeout, where a test that normally takes 0.125 seconds will take 45 seconds to complete, thus failing the build.

This erratic behavior has been since Big Sur.

Command executed
    run_tests(
      workspace: WORKSPACE,
      clean: parse_boolean_input(options[:clean], false),
      code_coverage: true,
      configuration: TESTING_CONFIGURATION,
      derived_data_path: derived_data_path,
      buildlog_path: LOGS_PATH,
      destination: destination,
      fail_build: false, # Fail the build using trainer
      output_directory: FASTLANE_OUTPUT_PATH,
      output_types: "", # Disable xcpretty junit parsing, see trainer below.
      prelaunch_simulator: true,
      scheme: scheme,
      test_without_building: parse_boolean_input(options[:test_without_building], false),
      max_concurrent_simulators: MAX_CONCURRENT_SIMS,
    )

    # Use trainer to generate junit xml as xcpretty does not handle parallel simulator parsing
    # https://github.com/xcpretty/xcpretty/issues/295
    trainer(extension: "_#{scheme}_report.xml",
      output_directory: FASTLANE_OUTPUT_PATH,
      xcpretty_naming: true,
    )

    run_slather(derived_data_path, scheme) if parse_boolean_input(options[:slather], true)
Complete output when running fastlane, including the stack trace and command used
set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/ -destination 'platform=iOS Simulator,name=iPhone 8,OS=14.5' -maximum-concurrent-test-simulator-destinations 4 -enableCodeCoverage YES test-without-building | tee '/Users/REDACTED/code/ios-2/fastlane/output/logs/REDACTED-iPhoneSnapshotTests.log' | xcpretty  --report junit --output '/var/folders/REDACTED/REDACTED/T/junit_report20210524-96765-awhgy7' 

[✔] 🚀 
+-------------------------------------------+---------+----------------------------------------------------------------+
|                                                     Used plugins                                                     |
+-------------------------------------------+---------+----------------------------------------------------------------+
| Plugin                                    | Version | Action                                                         |
+-------------------------------------------+---------+----------------------------------------------------------------+
| fastlane-plugin-lizard                    | 1.3.3   | lizard                                                         |
| fastlane-plugin-rome                      | 0.3.8   | rome                                                           |
| fastlane-plugin-trainer                   | 0.4.1   | trainer                                                        |
| fastlane-plugin-firebase_app_distribution | 0.2.9   | firebase_app_distribution firebase_app_distribution_get_udids  |
|                                           |         | firebase_app_distribution_login                                |
+-------------------------------------------+---------+----------------------------------------------------------------+

dsymsFastFile:1: warning: already initialized constant Fastlane::FastFile::APP_IDENTIFIER
DeliverFastfile:3: warning: previous definition of APP_IDENTIFIER was here
[18:06:35]: -----------------------
[18:06:35]: --- Step: xcversion ---
[18:06:35]: -----------------------
[18:06:36]: Setting Xcode version to /Applications/Xcode-12.5.app for all build steps
[18:06:36]: ------------------------------
[18:06:36]: --- Step: default_platform ---
[18:06:36]: ------------------------------
[18:06:36]: Driving the lane 'ios run_snapshot_tests' 🚀
[18:06:36]: -----------------------
[18:06:36]: --- Step: run_tests ---
[18:06:36]: -----------------------
[18:06:36]: Resolving Swift Package Manager dependencies...
[18:06:36]: $ xcodebuild -resolvePackageDependencies -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:37]: ▸ Command line invocation:
[18:06:37]: ▸     /Applications/Xcode-12.5.app/Contents/Developer/usr/bin/xcodebuild -resolvePackageDependencies -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:37]: ▸ User defaults from command line:
[18:06:37]: ▸     IDEDerivedDataPathOverride = /Users/REDACTED/code/ios-2/DerivedData/REDACTED_iOS
[18:06:37]: ▸     IDEPackageSupportUseBuiltinSCM = YES
[18:06:41]: ▸ Resolve Package Graph
[18:06:42]: ▸ Resolved source packages:
REDACTED
[18:06:42]: $ xcodebuild -showBuildSettings -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:45]: Command timed out after 3 seconds on try 1 of 4, trying again with a 6 second timeout...
[18:06:51]: Command timed out after 6 seconds on try 2 of 4, trying again with a 12 second timeout...
[18:06:58]: Found simulator "iPhone 8 (14.5)"
[18:06:58]: It's not recommended to set the `destination` value directly
[18:06:58]: Instead use the other options available in `fastlane scan --help`
[18:06:58]: Using your value 'platform=iOS Simulator,name=iPhone 8,OS=14.5' for now
[18:06:58]: because I trust you know what you're doing...

+------------------------------------------------+---------------------------------------------------------+
|                                         Summary for scan 2.184.0                                         |
+------------------------------------------------+---------------------------------------------------------+
| workspace                                      | REDACTED_iOS.xcworkspace                                 |
| clean                                          | false                                                   |
| code_coverage                                  | true                                                    |
| configuration                                  | Debug_Testing                                           |
| derived_data_path                              | DerivedData/REDACTED_iOS/                                |
| buildlog_path                                  | /Users/REDACTED/code/ios-2/fastlane/output/logs |
| fail_build                                     | false                                                   |
| output_directory                               | /Users/REDACTED/code/ios-2/fastlane/output      |
| prelaunch_simulator                            | true                                                    |
| scheme                                         | iPhoneSnapshotTests                                     |
| test_without_building                          | true                                                    |
| max_concurrent_simulators                      | 4                                                       |
| skip_detect_devices                            | false                                                   |
| ensure_devices_found                           | false                                                   |
| force_quit_simulator                           | false                                                   |
| reset_simulator                                | false                                                   |
| disable_slide_to_type                          | true                                                    |
| reinstall_app                                  | false                                                   |
| open_report                                    | false                                                   |
| include_simulator_logs                         | false                                                   |
| should_zip_build_products                      | false                                                   |
| output_xctestrun                               | false                                                   |
| result_bundle                                  | false                                                   |
| use_clang_report_name                          | false                                                   |
| disable_concurrent_testing                     | false                                                   |
| skip_build                                     | false                                                   |
| slack_use_webhook_configured_username_and_icon | false                                                   |
| slack_username                                 | fastlane                                                |
| slack_icon_url                                 | https://fastlane.tools/assets/img/fastlane_icon.png     |
| skip_slack                                     | false                                                   |
| slack_only_on_failure                          | false                                                   |
| xcodebuild_command                             | env NSUnbufferedIO=YES xcodebuild                       |
| skip_package_dependencies_resolution           | false                                                   |
| disable_package_automatic_updates              | false                                                   |
| use_system_scm                                 | false                                                   |
| number_of_retries                              | 0                                                       |
| xcode_path                                     | /Applications/Xcode-12.5.app                            |
+------------------------------------------------+---------------------------------------------------------+

[18:06:59]: Disabling 'Slide to Type' iPhone 8
[18:06:59]: $ /usr/libexec/PlistBuddy -c "Add :KeyboardContinuousPathEnabled bool false" /Users/REDACTED/Library/Developer/CoreSimulator/Devices/2BF0DD4D-BEA6-4160-9008-5749B3999F64/data/Library/Preferences/com.apple.keyboard.ContinuousPath.plist >/dev/null 2>&1
[18:06:59]: Booting iPhone 8
[18:07:00]: $ set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/ -destination 'platform=iOS Simulator,name=iPhone 8,OS=14.5' -maximum-concurrent-test-simulator-destinations 4 -enableCodeCoverage YES test-without-building | tee '/Users/REDACTED/code/ios-2/fastlane/output/logs/REDACTED-iPhoneSnapshotTests.log' | xcpretty  --report junit --output '/var/folders/w7/d9dqqx_938qfd43_vrf060900000gp/T/junit_report20210524-96765-awhgy7' 
[18:07:00]: ▸ Loading...
[18:07:34]: ▸ 2021-05-24 18:07:34.396 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa979cd5d70>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.519 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965f88610>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.531 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa966204d30>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.645 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965f8fd00>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.702 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa983185fb0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.754 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa96620b3b0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.796 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965415b70>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.820 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa9836d1a20>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.865 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa984e659e0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.

Then I kill the process, getting:

[✔] 🚀 
+-------------------------------------------+---------+----------------------------------------------------------------+
|                                                     Used plugins                                                     |
+-------------------------------------------+---------+----------------------------------------------------------------+
| Plugin                                    | Version | Action                                                         |
+-------------------------------------------+---------+----------------------------------------------------------------+
| fastlane-plugin-lizard                    | 1.3.3   | lizard                                                         |
| fastlane-plugin-rome                      | 0.3.8   | rome                                                           |
| fastlane-plugin-trainer                   | 0.4.1   | trainer                                                        |
| fastlane-plugin-firebase_app_distribution | 0.2.9   | firebase_app_distribution firebase_app_distribution_get_udids  |
|                                           |         | firebase_app_distribution_login                                |
+-------------------------------------------+---------+----------------------------------------------------------------+

dsymsFastFile:1: warning: already initialized constant Fastlane::FastFile::APP_IDENTIFIER
DeliverFastfile:3: warning: previous definition of APP_IDENTIFIER was here
[18:06:35]: -----------------------
[18:06:35]: --- Step: xcversion ---
[18:06:35]: -----------------------
[18:06:36]: Setting Xcode version to /Applications/Xcode-12.5.app for all build steps
[18:06:36]: ------------------------------
[18:06:36]: --- Step: default_platform ---
[18:06:36]: ------------------------------
[18:06:36]: Driving the lane 'ios run_snapshot_tests' 🚀	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:94:in `rescue in run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:80:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/delegates.rb:18:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:353:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:42:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/cli_tools_distributor.rb:122:in `take_off'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `kernel_load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:28:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:494:in `exec'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:30:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:24:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:49:in `block in <top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/friendly_errors.rb:130:in `with_friendly_errors'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:37:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `<main>'
<internal:dir>:43:in `[]': Interrupt
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/manager.rb:30:in `test_summary_filenames'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/run_tests.rb:36:in `ensure in run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/run_tests.rb:39:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:263:in `block (2 levels) in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/actions_helper.rb:69:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:255:in `block in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:157:in `trigger_action_by_name'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/fast_file.rb:159:in `method_missing'
	from TestFastfile:278:in `block (2 levels) in parsing_binding'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane.rb:33:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:49:in `block in execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane_manager.rb:47:in `cruise_lane'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:109:in `block (2 levels) in run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:187:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:157:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/runner.rb:444:in `run_active_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/delegates.rb:18:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:353:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:42:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/cli_tools_distributor.rb:122:in `take_off'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `kernel_load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:28:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:494:in `exec'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:30:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:24:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:49:in `block in <top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/friendly_errors.rb:130:in `with_friendly_errors'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:37:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `<main>'
/Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:34:in `wait': Interrupt
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:34:in `ensure in block in spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:33:in `block in spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:24:in `spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:24:in `spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/command_executor.rb:46:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:72:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:54:in `test_app'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:23:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/manager.rb:23:in `work'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/run_tests.rb:16:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:263:in `block (2 levels) in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/actions_helper.rb:69:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:255:in `block in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:157:in `trigger_action_by_name'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/fast_file.rb:159:in `method_missing'
	from TestFastfile:278:in `block (2 levels) in parsing_binding'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane.rb:33:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:49:in `block in execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane_manager.rb:47:in `cruise_lane'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:109:in `block (2 levels) in run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:187:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:157:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/runner.rb:444:in `run_active_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/delegates.rb:18:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:353:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:42:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/cli_tools_distributor.rb:122:in `take_off'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `kernel_load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:28:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:494:in `exec'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:30:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:24:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:49:in `block in <top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/friendly_errors.rb:130:in `with_friendly_errors'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:37:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `<main>'
/Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/command_executor.rb:47:in `each': Interrupt
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/command_executor.rb:47:in `block in execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:26:in `block in spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:24:in `spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/fastlane_pty.rb:24:in `spawn'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/command_executor.rb:46:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:72:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:54:in `test_app'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/runner.rb:23:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/scan/lib/scan/manager.rb:23:in `work'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/run_tests.rb:16:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:263:in `block (2 levels) in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/actions/actions_helper.rb:69:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:255:in `block in execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:229:in `execute_action'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:157:in `trigger_action_by_name'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/fast_file.rb:159:in `method_missing'
	from TestFastfile:278:in `block (2 levels) in parsing_binding'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane.rb:33:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:49:in `block in execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `chdir'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/runner.rb:45:in `execute'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/lane_manager.rb:47:in `cruise_lane'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/command_line_handler.rb:36:in `handle'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:109:in `block (2 levels) in run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:187:in `call'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/command.rb:157:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/runner.rb:444:in `run_active_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:76:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/commander-4.6.0/lib/commander/delegates.rb:18:in `run!'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:353:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/commands_generator.rb:42:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/fastlane/lib/fastlane/cli_tools_distributor.rb:122:in `take_off'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/fastlane-2.184.0/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/fastlane:23:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:63:in `kernel_load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli/exec.rb:28:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:494:in `exec'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:30:in `dispatch'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/cli.rb:24:in `start'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:49:in `block in <top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/lib/bundler/friendly_errors.rb:130:in `with_friendly_errors'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/gems/bundler-2.2.17/exe/bundle:37:in `<top (required)>'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `load'
	from /Users/REDACTED/.rvm/gems/ruby-3.0.1/bin/bundle:23:in `<main>'

[18:06:36]: -----------------------
[18:06:36]: --- Step: run_tests ---
[18:06:36]: -----------------------
[18:06:36]: Resolving Swift Package Manager dependencies...
[18:06:36]: $ xcodebuild -resolvePackageDependencies -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:37]: ▸ Command line invocation:
[18:06:37]: ▸     /Applications/Xcode-12.5.app/Contents/Developer/usr/bin/xcodebuild -resolvePackageDependencies -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:37]: ▸ User defaults from command line:
[18:06:37]: ▸     IDEDerivedDataPathOverride = /Users/REDACTED/code/ios-2/DerivedData/REDACTED_iOS
[18:06:37]: ▸     IDEPackageSupportUseBuiltinSCM = YES
[18:06:41]: ▸ Resolve Package Graph
[18:06:42]: ▸ Resolved source packages:
REDACTED
[18:06:42]: $ xcodebuild -showBuildSettings -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/
[18:06:45]: Command timed out after 3 seconds on try 1 of 4, trying again with a 6 second timeout...
[18:06:51]: Command timed out after 6 seconds on try 2 of 4, trying again with a 12 second timeout...
[18:06:58]: Found simulator "iPhone 8 (14.5)"
[18:06:58]: It's not recommended to set the `destination` value directly
[18:06:58]: Instead use the other options available in `fastlane scan --help`
[18:06:58]: Using your value 'platform=iOS Simulator,name=iPhone 8,OS=14.5' for now
[18:06:58]: because I trust you know what you're doing...

+------------------------------------------------+---------------------------------------------------------+
|                                         Summary for scan 2.184.0                                         |
+------------------------------------------------+---------------------------------------------------------+
| workspace                                      | REDACTED_iOS.xcworkspace                                 |
| clean                                          | false                                                   |
| code_coverage                                  | true                                                    |
| configuration                                  | Debug_Testing                                           |
| derived_data_path                              | DerivedData/REDACTED_iOS/                                |
| buildlog_path                                  | /Users/REDACTED/code/ios-2/fastlane/output/logs |
| fail_build                                     | false                                                   |
| output_directory                               | /Users/REDACTED/code/ios-2/fastlane/output      |
| prelaunch_simulator                            | true                                                    |
| scheme                                         | iPhoneSnapshotTests                                     |
| test_without_building                          | true                                                    |
| max_concurrent_simulators                      | 4                                                       |
| skip_detect_devices                            | false                                                   |
| ensure_devices_found                           | false                                                   |
| force_quit_simulator                           | false                                                   |
| reset_simulator                                | false                                                   |
| disable_slide_to_type                          | true                                                    |
| reinstall_app                                  | false                                                   |
| open_report                                    | false                                                   |
| include_simulator_logs                         | false                                                   |
| should_zip_build_products                      | false                                                   |
| output_xctestrun                               | false                                                   |
| result_bundle                                  | false                                                   |
| use_clang_report_name                          | false                                                   |
| disable_concurrent_testing                     | false                                                   |
| skip_build                                     | false                                                   |
| slack_use_webhook_configured_username_and_icon | false                                                   |
| slack_username                                 | fastlane                                                |
| slack_icon_url                                 | https://fastlane.tools/assets/img/fastlane_icon.png     |
| skip_slack                                     | false                                                   |
| slack_only_on_failure                          | false                                                   |
| xcodebuild_command                             | env NSUnbufferedIO=YES xcodebuild                       |
| skip_package_dependencies_resolution           | false                                                   |
| disable_package_automatic_updates              | false                                                   |
| use_system_scm                                 | false                                                   |
| number_of_retries                              | 0                                                       |
| xcode_path                                     | /Applications/Xcode-12.5.app                            |
+------------------------------------------------+---------------------------------------------------------+

[18:06:59]: Disabling 'Slide to Type' iPhone 8
[18:06:59]: $ /usr/libexec/PlistBuddy -c "Add :KeyboardContinuousPathEnabled bool false" /Users/REDACTED/Library/Developer/CoreSimulator/Devices/2BF0DD4D-BEA6-4160-9008-5749B3999F64/data/Library/Preferences/com.apple.keyboard.ContinuousPath.plist >/dev/null 2>&1
[18:06:59]: Booting iPhone 8
[18:07:00]: $ set -o pipefail && env NSUnbufferedIO=YES xcodebuild -workspace REDACTED_iOS.xcworkspace -scheme iPhoneSnapshotTests -configuration Debug_Testing -derivedDataPath DerivedData/REDACTED_iOS/ -destination 'platform=iOS Simulator,name=iPhone 8,OS=14.5' -maximum-concurrent-test-simulator-destinations 4 -enableCodeCoverage YES test-without-building | tee '/Users/REDACTED/code/ios-2/fastlane/output/logs/REDACTED-iPhoneSnapshotTests.log' | xcpretty  --report junit --output '/var/folders/w7/d9dqqx_938qfd43_vrf060900000gp/T/junit_report20210524-96765-awhgy7' 
[18:07:00]: ▸ Loading...
[18:07:34]: ▸ 2021-05-24 18:07:34.396 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa979cd5d70>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.519 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965f88610>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.531 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa966204d30>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.645 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965f8fd00>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.702 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa983185fb0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.754 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa96620b3b0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.796 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa965415b70>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.820 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa9836d1a20>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.
[18:07:34]: ▸ 2021-05-24 18:07:34.865 xcodebuild[96947:3616010] [MT] DVTAssertions: Warning in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-18205/IDEFoundation/Testing/IDETestRunSpecificationBuilder.m:678
[18:07:34]: ▸ Details:  Failed to compute path to baseline file during test run spec construction: <XCTHTestRunSpecification: 0x7fa984e659e0>
[18:07:34]: ▸ Object:   <IDETestRunSpecificationBuilder>
[18:07:34]: ▸ Method:   +testRunSpecificationsForTestingSpecifiers:scheme:buildables:withBuildParameters:additionalEnvironmentVariables:additionalCommandLineArguments:testRerunPolicy:includeClangProfileParameters:shouldDebugAppExtensions:error:
[18:07:34]: ▸ Thread:   <NSThread: 0x7fa979a059a0>{number = 1, name = main}
[18:07:34]: ▸ Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide.

Environment

<details><summary>✅ fastlane environment ✅</summary>

### Stack

| Key                         | Value                                            |
| --------------------------- | ------------------------------------------------ |
| OS                          | 11.2.3                                           |
| Ruby                        | 3.0.1                                            |
| Bundler?                    | true                                             |
| Git                         | git version 2.31.0                               |
| Installation Source         | ~/.rvm/gems/ruby-3.0.1/bin/fastlane              |
| Host                        | macOS 11.2.3 (20D91)                             |
| Ruby Lib Dir                | ~/.rvm/rubies/ruby-3.0.1/lib                     |
| OpenSSL Version             | OpenSSL 1.1.1k  25 Mar 2021                      |
| Is contained                | false                                            |
| Is homebrew                 | false                                            |
| Is installed via Fabric.app | false                                            |
| Xcode Path                  | /Applications/Xcode-12.5.app/Contents/Developer/ |
| Xcode Version               | 12.5                                             |


### System Locale

| Variable | Value       |   |
| -------- | ----------- | - |
| LANG     | en_US.UTF-8 | ✅ |
| LC_ALL   |             |   |
| LANGUAGE |             |   |


### fastlane files:

<details><summary>`./fastlane/Fastfile`</summary>

```ruby
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#     https://docs.fastlane.tools/plugins/available-plugins
#

# "Global" variables to be inherited in the included Fastfiles

PLATFORM_NAME = "iOS"
WORKSPACE = "REDACTED_iOS.xcworkspace"
PROJECT_DIR = `git rev-parse --show-toplevel`.chomp
FASTLANE_PATH = File.join(PROJECT_DIR, 'fastlane')
FASTLANE_OUTPUT_PATH = File.join(FASTLANE_PATH, 'output')
LOGS_PATH = File.join(FASTLANE_OUTPUT_PATH, 'logs')
DERIVED_DATA_PATH = File.join(FASTLANE_OUTPUT_PATH, 'derivedData')
RELEASE_CONFIGURATION = "Release"
DEBUG_CONFIGURATION = "Debug"
TESTING_CONFIGURATION = "Debug_Testing"

# Grab Xcode and simulator versions from Jenkinsfile using regex.

@XCODE_VERSION = ""
@SIM_VERSION = ""

$JENKINSFILE_PATH = ""
MAIN_JENKINSFILE_PATH = '../Jenkinsfile'
JENKINSFILE_LOCAL_OVERRIDE_PATH = '../Jenkinsfile_Local'

import "./Assert"

# Use local developer's Jenkinsfile if it exists, otherwise
# use the primary Jenkinsfile. (This is used so developers
# can specify a different version of Xcode in a file that is
# ignored in git.)

if File.exist?(JENKINSFILE_LOCAL_OVERRIDE_PATH)
    JENKINSFILE_PATH = JENKINSFILE_LOCAL_OVERRIDE_PATH
else
    JENKINSFILE_PATH = MAIN_JENKINSFILE_PATH
end

File.foreach(JENKINSFILE_PATH) { |line|
    match = /xcode(\d\d\.\d\.?\d?)/.match(line)
    if match != nil && !match.captures.empty?
        XCODE_VERSION = match.captures[0]
    end
    
    match = /simVersion\s*:\s*'(\d\d\.\d\.?\d?)/.match(line)
    if match != nil && !match.captures.empty?
        SIM_VERSION = match.captures[0]
    end
}

assert { SIM_VERSION != "" }
assert { XCODE_VERSION != "" }

import "./DependencyFastfile"
import "./DeliverFastfile"
import "./TestFastfile"
import "./PackageFastfile"
import "./dsymsFastFile"

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

xcversion(version: XCODE_VERSION)

default_platform(:ios)

platform :ios do
	lane :metrics do
	    lizard(source_folder: ".", language: "swift,objectivec", export_type: "xml", report_file: "bamboo/results/lizard-report.xml)")

	    #swiftlint(output_file: "bamboo/results/swiftlint.txt", ignore_exit_status: true)

	    project_key = "ios:#{ENV['IOS_BRANCH']}"
	    project_name = "ios #{ENV['IOS_BRANCH']}"
	    project_version ="#{ENV['BUILD_NUMBER']}"
	    sonar_url = "https://sonarqube.uxplatform.REDACTED.com"
	    sonar(project_key: project_key, project_name: project_name, project_version: project_version, sonar_url: sonar_url, sonar_login: ENV["SONAR_PASSWORD"])
	end
end

def parse_boolean_input(input_string, default)
	return_boolean = default
	if input_string == "true" || input_string == true
		return_boolean = true
	elsif input_string == "false" || input_string == false
		return_boolean = false
	end
	return return_boolean
end

`./fastlane/Appfile`
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple email address


# For more information about the Appfile, see:
#     https://docs.fastlane.tools/advanced/#appfile

fastlane gems

Gem Version Update-Status
fastlane 2.184.0 ✅ Up-To-Date

Loaded fastlane plugins:

Plugin Version Update-Status
fastlane-plugin-lizard 1.3.3 ✅ Up-To-Date
fastlane-plugin-rome 0.3.8 ✅ Up-To-Date
fastlane-plugin-trainer 0.4.1 ✅ Up-To-Date
fastlane-plugin-firebase_app_distribution 0.2.9 ✅ Up-To-Date
Loaded gems
Gem Version
did_you_mean 1.5.0
bundler 2.2.17
tsort 0.1.0
uri 0.10.1
pathname 0.1.0
rake 13.0.3
CFPropertyList 3.0.3
concurrent-ruby 1.1.8
i18n 1.8.10
minitest 5.14.4
tzinfo 2.0.4
zeitwerk 2.4.2
activesupport 6.1.3.2
public_suffix 4.0.6
addressable 2.7.0
artifactory 3.0.15
atomos 0.1.3
aws-eventstream 1.1.1
aws-partitions 1.462.0
aws-sigv4 1.2.3
jmespath 1.4.0
aws-sdk-core 3.114.0
aws-sdk-kms 1.43.0
aws-sdk-s3 1.95.1
babosa 1.0.4
claide 1.0.3
clamp 1.3.2
coderay 1.1.3
colored 1.2
colored2 3.1.2
highline 2.0.3
commander 4.6.0
declarative 0.0.20
digest-crc 0.6.3
unf_ext 0.0.7.7
unf 0.1.4
domain_name 0.5.20190701
dotenv 2.7.6
emoji_regex 3.2.2
excon 0.81.0
faraday-em_http 1.0.0
faraday-em_synchrony 1.0.0
faraday-excon 1.1.0
faraday-net_http 1.0.1
faraday-net_http_persistent 1.1.0
multipart-post 2.0.0
ruby2_keywords 0.0.4
faraday 1.4.2
http-cookie 1.0.3
faraday-cookie_jar 0.0.7
faraday_middleware 1.0.0
fastimage 2.2.3
gh_inspector 1.1.3
jwt 2.2.3
memoist 0.16.2
multi_json 1.15.0
os 1.1.1
signet 0.15.0
googleauth 0.16.2
httpclient 2.8.3
mini_mime 1.1.0
trailblazer-option 0.1.1
uber 0.1.0
representable 3.1.1
retriable 3.1.2
rexml 3.2.5
webrick 1.7.0
google-apis-core 0.3.0
google-apis-androidpublisher_v3 0.4.0
google-apis-playcustomapp_v1 0.3.0
google-apis-iamcredentials_v1 0.4.0
google-apis-storage_v1 0.4.0
google-cloud-env 1.5.0
google-cloud-errors 1.1.0
google-cloud-core 1.6.0
google-cloud-storage 1.31.1
json 2.5.1
mini_magick 4.11.0
naturally 2.2.1
plist 3.6.0
rubyzip 2.3.0
security 0.1.3
simctl 1.6.8
terminal-notifier 2.0.0
unicode-display_width 1.7.0
terminal-table 1.8.0
tty-screen 0.8.1
tty-cursor 0.7.1
tty-spinner 0.9.3
word_wrap 1.0.0
nanaimo 0.3.0
xcodeproj 1.19.0
rouge 2.0.7
xcpretty 0.3.0
xcpretty-travis-formatter 1.0.1
fastlane-plugin-firebase_app_distribution 0.2.9
method_source 1.0.0
pry 0.14.1
fastlane-plugin-lizard 1.3.3
fastlane-plugin-rome 0.3.8
trainer 0.9.1
fastlane-plugin-trainer 0.4.1
mini_portile2 2.5.1
racc 1.5.2
nokogiri 1.11.5
slather 2.7.1
xcode-install 2.7.0

generated on: 2021-05-24

```

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Reactions: 6
  • Comments: 21 (3 by maintainers)

Most upvoted comments

@Spencer225 been having the same issue too.

This github Issue seems to be the only result on google for this exception 🤷
Sorry fast lane devs 😃

I started a post on apple developer forum. Please add any more details you may have there https://developer.apple.com/forums/thread/682870

@swwol please share any more insights you may have on this if are able too

I am able to reproduce this too (using fast lane 2.184.0 which is after version with fix)

I’m seeing the same - ever since we updated to macOS Big Sur and Xcode 12.5. mythdhr Still happens in Xcode 12.5.1 and Xcode 13 beta 1.

@escakot thank you. That was very helpful for me. Our configuration was attempting to use snapshot and saving the derived data to a project level path. Executing the command directly without test-without-building revealed our build failure. In my case, it was swiftlint complaining about some files in the derived data path.

set -o pipefail && xcodebuild -scheme <OurScheme> -project ./<OurProj>.xcodeproj -derivedDataPath ./<redacted> -destination 'platform=iOS Simulator,name=iPad Pro (11-inch) (2nd generation),OS=14.5' FASTLANE_SNAPSHOT=YES FASTLANE_LANGUAGE=en-US

Hey everyone, I figured it out. The Fastlane error message is super cryptic and it’s likely outputting the wrong error message. The same error is still showing up for me but my xcodebuild build-for-testing via fastlane is now working.

Find the xcodebuild command that Fastlane uses. Run that command via terminal and remove piping to xcpretty. It should show you actual error that’s causing Fastlane to fail. I never actually tried it but if you use verbose on Fastlane, you might get the same results.

The issue I had was the compiler had issue type checking a few lines in our UnitTest. However, it was working fine through Xcode. 🤯
Same like @swwol, he had a code issue but Fastlane wasn’t outputting the actual error message.