Exclude a swift file from XCode code coverage

4.6k views Asked by At

I am using Apollo SDK, which generates an API.swift file. Can we exclude this file from the code coverage

3

There are 3 answers

1
Jakub Tudruj On

You can't exclude files from code coverage report directly in Xcode. You can use external tools like xcov or slather to generate HTML version of report and set list of excluded files in its config file.

0
Michael Henry On

you can use the built in one llvm-cov and you can specify it with the --ignore-filename-regex parameter.

here is an example (and a demo project):

https://github.com/michaelhenry/swifty-code-coverage

with the coverage that you get from llvm-cov, you can have the option to display it in the stdout or a file or just push it somewhere like codecov or codeclimate

here is the file to be exact

https://github.com/michaelhenry/swifty-code-coverage/blob/main/lcov.sh

so you can either report, export or both the code coverage.

$ xcrun llvm-cov export --help

enter image description here

Cheers,

0
AliasCocoa On

You can do it in codecov.yml (external tools)

... ... ...

ignore:

  • "path-for-file-to-ignore"