Hi, we are currently trying to generate reports with Slather using macOS 14 and Xcode 15.4. We added ruby and installed slather. This is our yml in our root directory:
coverage_service: gutter_json
xcodeproj: ./MyProject.xcodeproj
scheme: MyScheme
build_directory: ./Build
configuration: TestDebug
workspace: ./MyWorkspace.xcworkspace
verbose: true
output_directory: slather-report
ignore:
- Pods/*
- Carthage/*
We then execute the command slather coverage in our CI. Also, we plan to upload the report to Codecov.
But when trying this, it gives us this error always:
/Users/runner/hostedtoolcache/Ruby/3.0.7/arm64/lib/ruby/gems/3.0.0/gems/slather-2.8.3/lib/slather/project.rb:517:in `find_binary_files': No scheme named 'MyScheme' found in /Users/runner/work/ios-app/ios-app/MyProject.xcodeproj (StandardError)
I'm sure the scheme exists and its being shared, and I'm not sure what else to do. Thanks in advance.
Hi, we are currently trying to generate reports with Slather using macOS 14 and Xcode 15.4. We added ruby and installed slather. This is our yml in our root directory:
We then execute the command
slather coveragein our CI. Also, we plan to upload the report to Codecov.But when trying this, it gives us this error always:
I'm sure the scheme exists and its being shared, and I'm not sure what else to do. Thanks in advance.