Home > Enterprise >  Slather Xcode test specific Group
Slather Xcode test specific Group

Time:01-30

I need the code coverage for a specific Group(Folder) in my Xcode project with slather.

Already tried config file .slather.yml with property ignore. The generated html has files listed in third libraries (Swift PM). I am just interested in a specific Group.

CodePudding user response:

just add this to your .slather.yml file.

ignore:

  • ../*
  • Related