Alex Trott

Results 9 comments of Alex Trott

I think the actual issue sits with `trainer` https://github.com/fastlane/fastlane/pull/20160

@lyndsey-ferguson so I've been looking into this, and I think I missed something obvious, these are the "Summaries from Scan" and I noticed that when it's called from `multi scan`...

I think I'm close to the root of the issue, I think it's around the operations done here: https://github.com/lyndsey-ferguson/fastlane-plugin-test_center/blob/master/lib/fastlane/plugin/test_center/helper/multi_scan_manager/runner.rb#L20-L22 I'll keep you posted and hopefully raise a PR for it

Just adding some more information, incase anyone else wants to jump in, I've found that when this is called in fastlane ```ruby # path = ./fastlane/test_output/SampleApp.xcresult Scan.cache[:result_bundle_path] = path ```...

@lyndsey-ferguson @hactar I think I've found a solution if you set the following variables ```ruby SCAN_DERIVED_DATA_PATH='./derived_data' SCAN_RESULT_BUNDLE=true SCAN_OUTPUT_DIRECTORY='./derived_data/Logs/Test' ``` Scan will be able to find the the generated `.xcresult` as...

I personally haven’t had chance to write a fix to help out, but my workaround seems to resolve the issue for my project. @andyjohns you got an example of it...

@andyjohns I think I've found you're issue: ``` | derived_data_path | /Users/user/Library/Developer/Xcode/DerivedData/ThisProjectExample | | | -foybrrinptpuemfpcacqzlwwkurh | output_directory | /Users/user/Developer/this-project/fastlane/output/ThisProject | | | ExampleTests-batch-1 ``` You want scan to see...

@andyjohns ah man that sucks, I'll try to replicate it all better tomorrow, I don't think it's try count as I use that, I don't use batch though, so the...

@andyjohns just tried to replicate your issue, and I'm not seeing it on Xcode 13.4.1, going to download Xcode 14 and see if I can replicate it there