I am trying to use Slather to generate an XML test coverage report which can be uploaded to Codecov.
I am using slather on command line and I am trying to ignore the Pods folder generated by cocoapods.
bundle exec slather coverage --cobertura-xml --scheme ZumperTest --workspace ~/Desktop/Repos/ios/Rentals/Rentals.xcworkspace --ignore '**/Pods/*' --output-directory ./reports ~/Desktop/Repos/ios/Rentals/Rentals.xcodeproj and a few other variations.
But in the generated XML file I still have reports from the folder which I am trying to ignore.
`
Hi All,
I am trying to use Slather to generate an XML test coverage report which can be uploaded to Codecov. I am using slather on command line and I am trying to ignore the
Pods
folder generated by cocoapods.I've tried
bundle exec slather coverage --cobertura-xml --scheme ZumperTest --workspace ~/Desktop/Repos/ios/Rentals/Rentals.xcworkspace --ignore ../Rentals/Pods/ --output-directory ./reports ~/Desktop/Repos/ios/Rentals/Rentals.xcodeproj
bundle exec slather coverage --cobertura-xml --scheme ZumperTest --workspace ~/Desktop/Repos/ios/Rentals/Rentals.xcworkspace --ignore '**/Pods/*' --output-directory ./reports ~/Desktop/Repos/ios/Rentals/Rentals.xcodeproj
and a few other variations.But in the generated XML file I still have reports from the folder which I am trying to ignore. `