bitrise-steplib / steps-codecov

MIT License
3 stars 5 forks source link

Cant ignore Pods directory #7

Closed Stoff81 closed 7 years ago

Stoff81 commented 7 years ago

Hey guys,

Im really struggling to ignore the Pods directory for the coverage stats. Im using XCode with Swift. Ive tried adding the ```-J "ProjectName" in bitrise config although the Pods dir still comes up in the coverage.

Any ideas?

viktorbenei commented 7 years ago

Hi,

I think you should ask this from the codecov guys, this is all what the step does: https://github.com/bitrise-io/steps-codecov/blob/master/step.sh

stevepeak commented 7 years ago

@Stoff81 If the -J does not work (which is should 😄 ) Then you can also ignore pods in a codecov.yml file:

# filename: codecov.yml
ignore:
  - "Pods/"
viktorbenei commented 7 years ago

Thanks @stevepeak , I wasn't aware that you watch the issues here ;)