We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
I'm trying to create a report to use on Sonarqube for code coverage
I decide to use Slather in my GitHub action but I receive an error
My action
- name: Generate coverage report with Slather run: | slather coverage --sonarqube-xml \ --workspace MyApp.xcworkspace \ --scheme MyApp \ MyApp.xcodeproj \ --ignore "Pods/*" "build/*" "DerivedData/*"
But I got this error
ERROR: too many arguments
Could you help me?
Thanks
The text was updated successfully, but these errors were encountered:
The Readme says: $ slather coverage -s --scheme YourXcodeSchemeName path/to/project.xcodeproj
$ slather coverage -s --scheme YourXcodeSchemeName path/to/project.xcodeproj
path/to/project.xcodeproj has to be the last argument.
path/to/project.xcodeproj
This should work:
- name: Generate coverage report with Slather run: | slather coverage --sonarqube-xml \ --workspace MyApp.xcworkspace \ --scheme MyApp \ --ignore "Pods/*" "build/*" "DerivedData/*" \ MyApp.xcodeproj
Sorry, something went wrong.
Maybe that won't work though since I don't think you can give multiple patterns to --ignore like that. You might need to do this instead:
--ignore
- name: Generate coverage report with Slather run: | slather coverage --sonarqube-xml \ --workspace MyApp.xcworkspace \ --scheme MyApp \ --ignore "Pods/*" \ --ignore "build/*" \ --ignore "DerivedData/*" \ MyApp.xcodeproj
No branches or pull requests
Hi
I'm trying to create a report to use on Sonarqube for code coverage
I decide to use Slather in my GitHub action but I receive an error
My action
But I got this error
ERROR: too many arguments
Could you help me?
Thanks
The text was updated successfully, but these errors were encountered: